Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Search eBay listings API Playground

Returns normalized eBay search results.

POSTapiKey3 credits/requestebay.searchResponseDoceBay

Endpoint

Choose one catalog endpoint for this request.

6 shown
POSTapiKey3 credits/requestebay.searchResponseDoceBay
POST /ebay/search

Search eBay listings

Returns normalized eBay search results.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Body (ebay.SearchOption)

Body preview
{
  "keyword": "1952 topps baseball mickey mantle #311",
  "limit": 60,
  "listing_type": "active",
  "page": 1
}

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responsePOST

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "page": 1,
    "total": 123,
    "has_more": true,
    "result": [
      {
        "image": "https://i.ebayimg.com/images/g/item1/s-l140.webp",
        "caption": "New Listing",
        "item_id": "196435705622",
        "title": "OpenAI Shirt",
        "sub_title": "Brand New",
        "link": "https://www.ebay.com/itm/196435705622"
      }
    ]
  }
}

Endpoint details

Returns normalized eBay search results.

Method
POST
Path
/ebay/search
Authentication
apiKey
Credit cost
3 credits/request
Platform
eBay
Parameters
2 documented fields

Request parameters

option:bodyx-api-key:header

Response schema fields

codedatadata.has_moredata.pagedata.resultdata.result[].bid_countdata.result[].captiondata.result[].imagedata.result[].is_authenticity_guaranteeddata.result[].item_iddata.result[].linkdata.result[].location

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "page": 1,
    "total": 123,
    "has_more": true,
    "result": [
      {
        "image": "https://i.ebayimg.com/images/g/item1/s-l140.webp",
        "caption": "New Listing",
        "item_id": "196435705622",
        "title": "OpenAI Shirt",
        "sub_title": "Brand New",
        "link": "https://www.ebay.com/itm/196435705622"
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/ebay/search" \
  -H "x-api-key: <api-key>" \
  -X POST \
  --data "{}"