Skip to content
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.comGET/ebay/autocomp…GET/ebay/completedGET/ebay/search{ } JSON

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 us

Pagination

Page through results with page.

Quick Start

Send your key and a few params. Failed requests are free.

data_api.py
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
EndpointCategoryPrice / 1k results
/v1/data/ebay/autocompleteKeyword SuggestionsSearch1 credit / run
/v1/data/ebay/completedComing soonSold ListingsSearch1 credit / run
/v1/data/ebay/searchSearch ListingsSearch1 credit / run
/v1/data/ebay/categoriesList CategoriesReference1 credit / run
/v1/data/ebay/marketsList MarketsReference1 credit / run
/v1/data/ebay/categories/{category_id}/itemsCategory ItemsCategories1 credit / run
/v1/data/ebay/items/{item_id}Get ItemItems1 credit / run
/v1/data/ebay/items/{item_id}/reviewsGet ReviewsItems1 credit / run
/v1/data/ebay/sellers/{username}Get SellerSellers1 credit / run
/v1/data/ebay/sellers/{username}/feedbackSeller FeedbackSellers1 credit / run
/v1/data/ebay/sellers/{username}/itemsSeller ItemsSellers1 credit / run