## klarna/product-offers

`GET /v1/klarna/product-offers`

Every retailer's offer for one product: price, stock, shipping, instalment terms and the retailer's outbound link, plus the product's images.

*Klarna product offers*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Product id — e.g. `3216399795` |
| `region` | no | Catalogue region — e.g. `usa` |
| `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/klarna/product-offers?id=3216399795" \
  -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
{
  "count": 0,
  "has_more": false,
  "images": [
    "example"
  ],
  "items": [
    {
      "availability": "example",
      "currency": "example",
      "delivery_time": {
        "maxDays": 0,
        "minDays": 0
      },
      "id": "example",
      "installment": {
        "currency": "example",
        "interval": "example",
        "price": 0,
        "term_length": 0
      },
      "labels": [
        "example"
      ],
      "merchant": "example",
      "merchant_country": "example",
      "merchant_id": "example",
      "merchant_logo_url": "https://example.com/example",
      "price": 0,
      "shipping_cost": 0,
      "stock_status": "example",
      "title": "example",
      "url": "https://example.com/example"
    }
  ],
  "product_id": "example",
  "region": "example",
  "summary": {
    "internationalOffer": {
      "condition": "example",
      "count": 0,
      "notInStock": false
    },
    "minPriceAcrossAllOffers": {
      "amount": "example",
      "currency": "example"
    },
    "minPriceInStock": {
      "amount": "example",
      "currency": "example"
    },
    "nationalOffer": {
      "condition": "example",
      "count": 0,
      "maxPrice": {
        "amount": "example",
        "currency": "example"
      },
      "minPrice": {
        "amount": "example",
        "currency": "example"
      },
      "notInStock": false
    }
  }
}
```

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