## ebay/product

`GET /v1/ebay/product`

Look up one eBay listing by item id or ebay.com/itm URL: full price, condition, seller, item specifics, availability, shipping, returns, and ratings.

*Get an eBay listing*

| Parameter | Required | Description |
| --- | --- | --- |
| `product_id` | yes | eBay item id: a numeric legacy id, a v1\|…\|… RESTful id, or an ebay.com/itm/ URL — e.g. `327256602116` |
| `country` | no | Marketplace: a country code (us, gb, de…) or a raw eBay marketplace id (EBAY_US). Default us. — e.g. `us` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 1 credit at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/ebay/product?product_id=327256602116" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [
    "example"
  ],
  "additional_image_urls": [
    "example"
  ],
  "adult_only": false,
  "aspects": [
    {
      "name": "example",
      "value": "example"
    }
  ],
  "availability_status": "example",
  "brand": "example",
  "buying_options": [
    "example"
  ],
  "category_id": "example",
  "category_path": "example",
  "condition": "example",
  "condition_id": "example",
  "epid": "example",
  "gtin": "example",
  "id": "example",
  "image_url": "https://example.com/example",
  "item_creation_date": "2026-09-01T12:00:00Z",
  "item_location": {
    "city": "example",
    "country": "example",
    "postal_code": "example",
    "state": "example"
  },
  "legacy_id": "example",
  "marketplace_id": "example",
  "mpn": "example",
  "price": {
    "currency": "example",
    "value": 0
  },
  "quantity_sold": 0,
  "rating": {
    "average": 0,
    "count": 0
  },
  "returns_accepted": false,
  "seller": {
    "feedback_percentage": 0,
    "feedback_score": 0,
    "username": "example"
  },
  "shipping": {
    "cost": {
      "currency": "example",
      "value": 0
    },
    "service": "example",
    "type": "example"
  },
  "short_description": "example",
  "title": "example",
  "top_rated": false,
  "url": "https://example.com/example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/ebay/product#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/ebay/product.json)
