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")
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
ebay-oauth-python-client
Python
API
ebay.com
ebay.com:buy-deal
At a glance
Language Python
Endpoints4
Base URLhttps://api.ebay.com/buy/deal/v1
✓ Official