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

Get eBay item details API Playground

Returns normalized details for a public eBay item listing.

GETapiKey2 credits/requestebay.itemResponseDoceBay

Endpoint

Choose one catalog endpoint for this request.

6 shown
GETapiKey2 credits/requestebay.itemResponseDoceBay
GET /ebay/item/{item_id}

Get eBay item details

Returns normalized details for a public eBay item listing.

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

Path parameters

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 responseGET

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

Endpoint details

Returns normalized details for a public eBay item listing.

Method
GET
Path
/ebay/item/{item_id}
Authentication
apiKey
Credit cost
2 credits/request
Platform
eBay
Parameters
2 documented fields

Request parameters

item_id:pathx-api-key:header

Response schema fields

codedatadata.availabilitydata.conditiondata.descriptiondata.imagesdata.item_feedback_countdata.item_iddata.item_specificsdata.linkdata.locationdata.price

Sample response summary

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

curl "https://api.crawlora.net/api/v1/ebay/item/<item_id>" \
  -H "x-api-key: <api-key>"