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")
<span class="tablenote"><b>Note:</b>This method was originally created to see…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/account/v1/kyc
This method retrieves the seller's current set of privileges, including wheth…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/account/v1/privilege
Use this call to retrieve all sales tax table entries that the seller has def…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.ebay.com/sell/account/v1/sales_tax
SDK on GitHub 📄 API Docs
SDK
ebay-oauth-python-client
Python
API
ebay.com
ebay.com:sell-account
At a glance
Language Python
Endpoints36
Base URLhttps://api.ebay.com/sell/account/v1
✓ Official