Endpoint Playground
Test Crawlora's eBay Item 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/item/<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| item_id (path) | string | Yes | eBay item ID |
{
"code": 200,
"msg": "OK",
"data": {
"item_id": "196435705622",
"title": "1983 TOPPS BASEBALL - 1952 TOPPS REPRINTS #311 MICKEY MANTLE",
"link": "https://www.ebay.com/itm/196435705622",
"images": [
"https://i.ebayimg.com/images/g/4yUAAOSwsV9ns4CY/s-l1600.jpg"
],
"price": 49.95,
"price_text": "US $49.95",
"condition": "Pre-Owned",
"availability": "In Stock",
"sale_status": "Available",
"shipping": "+$4.95 shipping",
"location": "Canada",
"seller_name": "soonerfan1949",
"seller_link": "https://www.ebay.com/usr/soonerfan1949",
"seller_store_name": "POLOBLADE COLLECTIBLES",
"seller_member_since": "Mar 1998",
"seller_feedback_score": 2067,
"seller_positive_feedback": 100,
"rating": 4.8,
"rating_count": 12,
"item_specifics": {
"Card Number": "311",
"Manufacturer": "Topps"
}
}
}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 details for a public eBay item listing.
{
"code": 200,
"msg": "OK",
"data": {
"item_id": "196435705622",
"title": "1983 TOPPS BASEBALL - 1952 TOPPS REPRINTS #311 MICKEY MANTLE",
"link": "https://www.ebay.com/itm/196435705622",
"images": [
"https://i.ebayimg.com/images/g/4yUAAOSwsV9ns4CY/s-l1600.jpg"
],
"price": 49.95,
"price_text": "US $49.95",
"condition": "Pre-Owned",
"availability": "In Stock",
"sale_status": "Available",
"shipping": "+$4.95 shipping",
"location": "Canada",
"seller_name": "soonerfan1949",
"seller_link": "https://www.ebay.com/usr/soonerfan1949",
"seller_store_name": "POLOBLADE COLLECTIBLES",
"seller_member_since": "Mar 1998",
"seller_feedback_score": 2067,
"seller_positive_feedback": 100,
"rating": 4.8,
"rating_count": 12,
"item_specifics": {
"Card Number": "311",
"Manufacturer": "Topps"
}
}
}curl "https://api.crawlora.net/api/v1/ebay/item/<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"