All sites
Data API
eBay Data API
Listings, item detail, seller feedback and completed-sale data from eBay.
11endpointsRate Limit · Captcha handled for you
eBay Data API
Extract search listings, item detail, seller profiles and feedback from eBay as structured JSON. One POST per query, anti-bot handled, billed only on success.
POST /v1/data/ebay/{action}Key Features
Structured JSON
Clean, normalized records for search listings, item detail, seller profiles and feedback. No HTML parsing on your side.
11 endpoints
Across 5 categories, all under one base path.
Anti-bot handled
Rate Limit, Captcha cleared for you behind the scenes.
Fresh or cached
Serve instantly from the warm store, or force a live scrape per request.
Regions & Languages
Target specific markets and languages with these parameters:
domaindefault usPagination
Page through results with page.
Quick Start
Send your key and a few params. Failed requests are free.
import requests
resp = requests.post(
"https://api.capzy.ai/v1/data/ebay/search",
json={
"clientKey": "capzy_your_key_here",
"params": {
"query": "nintendo switch"
}
},
)
print(resp.json()["result"])Per-run pricing
failed requests are free| Endpoint | Category | Price / 1k results |
|---|---|---|
/v1/data/ebay/autocompleteKeyword Suggestions | Search | 1 credit / run |
/v1/data/ebay/completedComing soonSold Listings | Search | 1 credit / run |
/v1/data/ebay/searchSearch Listings | Search | 1 credit / run |
/v1/data/ebay/categoriesList Categories | Reference | 1 credit / run |
/v1/data/ebay/marketsList Markets | Reference | 1 credit / run |
/v1/data/ebay/categories/{category_id}/itemsCategory Items | Categories | 1 credit / run |
/v1/data/ebay/items/{item_id}Get Item | Items | 1 credit / run |
/v1/data/ebay/items/{item_id}/reviewsGet Reviews | Items | 1 credit / run |
/v1/data/ebay/sellers/{username}Get Seller | Sellers | 1 credit / run |
/v1/data/ebay/sellers/{username}/feedbackSeller Feedback | Sellers | 1 credit / run |
/v1/data/ebay/sellers/{username}/itemsSeller Items | Sellers | 1 credit / run |