Using ebaysdk-python with ebay.com

Python integration

Install
pip install ebaysdk-python
Quick start
import ebaysdk-python

# Use an OAuth2 access token
client = ebaysdk_python.Client(access_token="YOUR_ACCESS_TOKEN")
Use this call to search for and retrieve one or more orders based on their cr…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/fulfillment/v1/order
Use this call to retrieve the contents of an order based on its unique identi…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/fulfillment/v1/order/{orderId}
Search Payment Dispute by Filters
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/fulfillment/v1/payment_dispute_summary
SDK on GitHub 📄 API Docs
SDK
ebaysdk-python
Python
API
ebay.com
ebay.com:sell-fulfillment
At a glance
Language Python
Endpoints15
Base URLhttps://api.ebay.com/sell/fulfillment/v1