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")
This method returns paginated results containing all eBay events for the spec…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/buy/deal/v1/event
This method retrieves a paginated set of deal items. The result set contains …
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/buy/deal/v1/deal_item
This method returns a paginated set of event items. The result set contains a…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/buy/deal/v1/event_item
SDK on GitHub 📄 API Docs
SDK
ebaysdk-python
Python
API
ebay.com
ebay.com:buy-deal
At a glance
Language Python
Endpoints4
Base URLhttps://api.ebay.com/buy/deal/v1