## aliexpress/product

`GET /v1/aliexpress/product`

One AliExpress product: title, price range and promotion, rating, sales, images and video, properties, description, variants and options, shipping options and the seller.

*AliExpress product*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | AliExpress item id (the number in its URL), or the URL — e.g. `1005005244562338` |
| `region` | no | Storefront country — e.g. `US` |
| `currency` | no | Currency code — e.g. `USD` |
| `language` | no | Locale — e.g. `en_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:** 3 credits 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/aliexpress/product?id=1005005244562338" \
  -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
{
  "available": false,
  "breadcrumbs": [],
  "category_id": "example",
  "currency": "example",
  "description": {
    "images": [
      "example"
    ]
  },
  "id": "example",
  "image": "https://example.com/example",
  "images": [
    "example"
  ],
  "options": [
    {
      "id": "example",
      "name": "example",
      "values": [
        {}
      ]
    }
  ],
  "platform": "example",
  "price_range": {
    "max": 0,
    "min": 0
  },
  "promotion_price": {
    "max": 0,
    "min": 0
  },
  "properties": [
    {
      "name": "example",
      "value": "example"
    }
  ],
  "quantity": 0,
  "rating": {
    "max": 0,
    "value": 0,
    "votes": 0
  },
  "reviews_count": 0,
  "seller": {
    "company_id": "example",
    "id": "example",
    "name": "example",
    "store_id": "example",
    "url": "https://example.com/example"
  },
  "shipping": {
    "days_to_ship": 0,
    "options": [],
    "package": {
      "height": 0,
      "length": 0,
      "weight": 0,
      "width": 0
    },
    "to": "example"
  },
  "title": "example",
  "type": "example",
  "url": "https://example.com/example",
  "variants": [
    {
      "attributes": "example",
      "ext": "example",
      "id": "example",
      "price": 0,
      "promotion_price": 0,
      "quantity": 0
    }
  ]
}
```

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