Endpoint Playground
Test Crawlora's Search eBay listings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/ebay/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | eBay search payload |
{
"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"
}
]
}
}Public Playground
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.
Returns normalized eBay search results.
{
"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 "https://api.crawlora.net/api/v1/ebay/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"