eBay API

eBay Search API

Search eBay active listings by keyword with optional price-range, item-condition, listing-type, and sort filters and get title, price, condition, shipping, and seller in one normalized response.

POST/v1/run/ebay.search
Uptime
100.00%
30d · 236 calls
Requests
236
30d · weekly, last 12 wks
Response
9.4s
median · 30d

Try it

Make your first request

conditionarray
Filter by one or more item conditions; omit for all conditions (e.g. ["new", "open_box"]).
Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "condition": "example",
        "image": "https://example.com/image.jpg",
        "itemId": "a1b2c3d4",
        "listingType": "general",
        "price": 19.99,
        "sellerFeedbackPercent": 12.5,
        "sellerName": "Example title",
        "shippingCost": "19.99",
        "title": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface EbaySearchResponse {
  data: {
    items: {
      condition?: string;
      image?: string;
      itemId: string;
      listingType?: string;
      price?: number;
      sellerFeedbackPercent?: number;
      sellerName?: string;
      shippingCost?: string;
      title: string;
      url: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/ebay.search
curl -X POST https://api.getanyapi.com/v1/run/ebay.search \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"query":"nintendo switch","sort":"price_low"}'
FieldTypeExample value
Request body
querystring"nintendo switch"Search keywords, e.g. "nintendo switch" or "vintage levis 501".
conditionarrayFilter by one or more item conditions; omit for all conditions (e.g. ["new", "open_box"]).
limitinteger3Maximum number of results to return (1 to 25, default 25).
listingTypeenumRestrict to a listing format; omit or use all for both (e.g. buy_it_now for fixed-price only).
maxPriceintegerOptional maximum item price in USD.
minPriceintegerOptional minimum item price in USD.
sortenum"price_low"Result sort order; omit for eBay's Best Match (e.g. price_low sorts by lowest price plus shipping first).
Response
dataobject
data.itemsobject[]Listing records: title, price, condition, shipping cost, seller info, image, and item URL. Populated whenever the provider has data for the entity.
data.items[].conditionstring
data.items[].imagestringPrimary listing image URL. Populated whenever the provider has data for the entity.
data.items[].itemIdstringeBay item identifier. Populated whenever the provider has data for the entity.
data.items[].listingTypestringAuction, FixedPrice, etc.
data.items[].pricenumberListing price.
data.items[].sellerFeedbackPercentnumberSeller positive-feedback percentage.
data.items[].sellerNamestring
data.items[].shippingCoststringShipping cost or free-delivery label.
data.items[].titlestringPopulated whenever the provider has data for the entity.
data.items[].urlstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0005
Price /1k reqUSD$0.50

FAQ

About the eBay Search API

The AnyAPI eBay Search API returns eBay search data as normalized JSON from one POST call to /v1/run/ebay.search. Search eBay active listings by keyword with optional price-range, item-condition, listing-type, and sort filters and get title, price, condition, shipping, and seller in one normalized response. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of eBay search calls through AnyAPI succeeded, with a median response time of 9.4 seconds across 236 measured calls.

It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Search eBay active listings by keyword with optional price-range, item-condition, listing-type, and sort filters and get title, price, condition, shipping, and seller in one normalized response. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of eBay search calls through AnyAPI succeeded, with a median response time of 9.4 seconds across 236 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.