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 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 "{}"