# Get Product

Retrieve an IKEA article enriched with dimensions, materials, benefits, media, attachments, and assembly metadata.

- Platform: [IKEA](https://docs.upscrape.com/docs/platforms/ikea)
- Capability ID: `ikea.product.get`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "item_id": "80275887",
    "locale": "fr/fr"
  },
  "capability": "ikea.product.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `item_id` | `string` | Yes | Eight-digit IKEA article number, optionally formatted as 802.758.87. |
| `locale` | `string` | No | IKEA country/language storefront. |

### Example input

```json
{
  "item_id": "80275887",
  "locale": "fr/fr"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "assembly_required": true,
  "attachments": [
    {
      "type": "ASSEMBLY_INSTRUCTIONS",
      "url": "https://www.ikea.com/fr/fr/assembly_instructions/kallax-etagere-blanc__AA-1055145-11-101.pdf"
    }
  ],
  "benefit_summary": "À la verticale ou à l'horizontale, la série KALLAX s'adapte à vos envies, à votre espace et à votre budget.",
  "benefits": [
    "Le design simple et les lignes épurées de la KALLAX permettent de lui trouver facilement une place n'importe où dans la maison.",
    "Vous pouvez choisir de l'installer à la verticale comme une étagère ou à l'horizontal comme un buffet."
  ],
  "categories": [
    {
      "key": "55012",
      "name": "Étagère cube et cube de rangement"
    },
    {
      "key": "11465",
      "name": "Meubles étagères"
    }
  ],
  "communications_available": true,
  "currency": "EUR",
  "design": "blanc",
  "images": [
    {
      "alt_text": "Étagère cube KALLAX blanche avec compartiments ouverts pour le rangement.",
      "height": 4000,
      "type": "MAIN_PRODUCT_IMAGE",
      "url": "https://www.ikea.com/fr/fr/images/p/573b0e3c589ce32a/kallax-etagere-blanc/PE702939.jpg",
      "width": 4000
    }
  ],
  "item_id": "80275887",
  "locale": "fr/fr",
  "main_image_url": "https://www.ikea.com/fr/fr/images/p/573b0e3c589ce32a/kallax-etagere-blanc/PE702939.jpg",
  "materials": [
    "Panneau de particules, Panneau de fibres de bois, peinture acrylique, Carton nid d'abeille (100 % recyclé), Bord en plastique"
  ],
  "measurements": [
    {
      "imperial": "30 1/8 \"",
      "metric": "76.5 cm",
      "name": "Largeur"
    },
    {
      "imperial": "15 3/8 \"",
      "metric": "39 cm",
      "name": "Profondeur"
    },
    {
      "imperial": "57 5/8 \"",
      "metric": "146.5 cm",
      "name": "Hauteur"
    }
  ],
  "name": "KALLAX",
  "number_of_packages": 1,
  "price": 74.99,
  "rating_count": 2747,
  "rating_value": 4.7,
  "raw": {
    "catalog": {
      "currencyCode": "EUR",
      "id": "80275887",
      "name": "KALLAX",
      "priceNumeral": 74.99,
      "typeName": "étagère"
    },
    "communications": {
      "available": true
    }
  },
  "type_name": "étagère",
  "url": "https://www.ikea.com/fr/fr/p/kallax-etagere-blanc-80275887/"
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `assembly_required` | `boolean` | true |
| `attachments` | `array` | 1 items |
| `attachments` | `array` | 1 items |
| `benefit_summary` | `string` | À la verticale ou à l'horizontale, la série KALLAX s'adapte à vos envie… |
| `benefits` | `array` | 2 items |
| `benefits` | `array` | 2 items |
| `categories` | `array` | 2 items |
| `categories` | `array` | 2 items |
| `communications_available` | `boolean` | true |
| `currency` | `string` | EUR |
| `design` | `string` | blanc |
| `images` | `array` | 1 items |
| `images` | `array` | 1 items |
| `item_id` | `string` | 80275887 |
| `locale` | `string` | fr/fr |
| `main_image_url` | `string` | https://www.ikea.com/fr/fr/images/p/573b0e3c589ce32a/kallax-etagere-bla… |
| `materials` | `array` | 1 items |
| `materials` | `array` | 1 items |
| `measurements` | `array` | 3 items |
| `measurements` | `array` | 3 items |
| `name` | `string` | KALLAX |
| `number_of_packages` | `integer` | 1 |
| `price` | `number` | 74.99 |
| `rating_count` | `integer` | 2747 |
| `rating_value` | `number` | 4.7 |
| `raw` | `object` | 2 fields |
| `raw.catalog` | `object` | 5 fields |
| `raw.communications` | `object` | 1 fields |
| `type_name` | `string` | étagère |
| `url` | `string` | https://www.ikea.com/fr/fr/p/kallax-etagere-blanc-80275887/ |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
