Klarna API

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.

Endpoint

GET/v1/klarna/product-offerslive · proven3 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
idyesProduct id3216399795
regionnoCatalogue regionusa
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
curl "https://www.monocrawl.com/v1/klarna/product-offers?id=3216399795" \
  -H "x-api-key: mn_your_key_here"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/klarna/product-offers?id=3216399795",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/klarna/product-offers?id=3216399795",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "klarna",
  "endpoint": "/v1/klarna/product-offers",
  "data": {
    "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
      }
    }
  },
  "credits_used": 3,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
countnumber | nullNumber of records in this response, not lifetime or total matches.
has_moreboolean | nullSource continuation indicator; null means unknown.
imagesarray | nullOptional images supplied by this operation. Null means unknown.
itemsarray | nullReturned records. Source coverage and completeness vary.
items[].availabilitystring | nullOptional availability supplied by this operation. Null means unknown.
items[].currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].delivery_timeobject | nullOptional delivery time supplied by this operation. Null means unknown.
items[].delivery_time.maxDaysnumber | nullOptional maxDays supplied by this operation. Null means unknown.
items[].delivery_time.minDaysnumber | nullOptional minDays supplied by this operation. Null means unknown.
items[].idstring | nullSource identifier. Preserve the supplied type and exact value.
items[].installmentobject | nullOptional installment supplied by this operation. Null means unknown.
items[].installment.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].installment.intervalstring | nullOptional interval supplied by this operation. Null means unknown.
items[].installment.pricenumber | nullSource price. Currency, taxes and availability depend on the listing.
items[].installment.term_lengthnumber | nullOptional term length supplied by this operation. Null means unknown.
items[].labelsarray | nullOptional labels supplied by this operation. Null means unknown.
items[].merchantstring | nullOptional merchant supplied by this operation. Null means unknown.
items[].merchant_countrystring | nullOptional merchant country supplied by this operation. Null means unknown.
items[].merchant_idstring | nullOptional merchant id supplied by this operation. Null means unknown.
items[].merchant_logo_urlstring | nullOptional merchant logo url supplied by this operation. Null means unknown.
items[].pricenumber | nullSource price. Currency, taxes and availability depend on the listing.
items[].shipping_costnumber | nullOptional shipping cost supplied by this operation. Null means unknown.
items[].stock_statusstring | nullOptional stock status supplied by this operation. Null means unknown.
items[].titlestring | nullSource title when supplied.
items[].urlstring | nullOriginal source URL when supplied.
product_idstring | nullOptional product id supplied by this operation. Null means unknown.
regionstring | nullOptional region supplied by this operation. Null means unknown.
summaryobject | nullOptional summary supplied by this operation. Null means unknown.
summary.internationalOfferobject | nullOptional internationalOffer supplied by this operation. Null means unknown.
summary.internationalOffer.conditionstring | nullOptional condition supplied by this operation. Null means unknown.
summary.internationalOffer.countnumber | nullNumber of records in this response, not lifetime or total matches.
summary.internationalOffer.notInStockboolean | nullOptional notInStock supplied by this operation. Null means unknown.
summary.minPriceAcrossAllOffersobject | nullOptional minPriceAcrossAllOffers supplied by this operation. Null means unknown.
summary.minPriceAcrossAllOffers.amountstring | nullOptional amount supplied by this operation. Null means unknown.
summary.minPriceAcrossAllOffers.currencystring | nullOptional currency supplied by this operation. Null means unknown.
summary.minPriceInStockobject | nullOptional minPriceInStock supplied by this operation. Null means unknown.
summary.minPriceInStock.amountstring | nullOptional amount supplied by this operation. Null means unknown.
summary.minPriceInStock.currencystring | nullOptional currency supplied by this operation. Null means unknown.
summary.nationalOfferobject | nullOptional nationalOffer supplied by this operation. Null means unknown.
summary.nationalOffer.conditionstring | nullOptional condition supplied by this operation. Null means unknown.
summary.nationalOffer.countnumber | nullNumber of records in this response, not lifetime or total matches.
summary.nationalOffer.maxPriceobject | nullOptional maxPrice supplied by this operation. Null means unknown.
summary.nationalOffer.maxPrice.amountstring | nullOptional amount supplied by this operation. Null means unknown.
summary.nationalOffer.maxPrice.currencystring | nullOptional currency supplied by this operation. Null means unknown.
summary.nationalOffer.minPriceobject | nullOptional minPrice supplied by this operation. Null means unknown.
summary.nationalOffer.minPrice.amountstring | nullOptional amount supplied by this operation. Null means unknown.
summary.nationalOffer.minPrice.currencystring | nullOptional currency supplied by this operation. Null means unknown.
summary.nationalOffer.notInStockboolean | nullOptional notInStock supplied by this operation. Null means unknown.

Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.

The example is invented and illustrates types only; zero and empty values are not claims about a real result.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.