Using ebay-oauth-python-client with ebay.com

Python integration

✓ Official SDK
Install
pip install ebay-oauth-python-client
Quick start
import ebay-oauth-python-client

# Use an OAuth2 access token
client = ebay_oauth_python_client.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
ebay-oauth-python-client
Python
API
ebay.com
ebay.com:sell-fulfillment
At a glance
Language Python
Endpoints15
Base URLhttps://api.ebay.com/sell/fulfillment/v1
✓ Official