## klarna/search

`GET /v1/klarna/search`

Products matching a keyword across every retailer in the catalogue: lowest price, rating, rank, category, cheapest offer and instalment terms.

*Klarna product search*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Search keyword — e.g. `headphone` |
| `region` | no | Catalogue region: usa, uk, germany, france, italy, spain, netherlands, sweden, norway, denmark, finland, austria, ireland, poland, belgium — e.g. `usa` |
| `limit` | no | Requested rows per response, 1–1000. The source may return fewer. Remaining rows from an already purchased page use a saved cursor and cost zero to retrieve for up to one hour; further native source pages use this endpoint’s normal price. — e.g. `5` |
| `cursor` | no | Use the returned cursor unchanged, retaining the original query, filters and limit. Saved mlo1. cursors retrieve already purchased rows at zero credits for up to one hour. A native source cursor, when supplied, starts a normally priced source page. Quote with dry_run before continuing. |
| `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/search?query=headphone" \
  -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
{
  "brands": [],
  "categories": [
    {
      "id": "example",
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "count": 0,
  "cursor": null,
  "dropped": 0,
  "has_more": false,
  "items": [
    {
      "category": {
        "id": "example",
        "name": "example",
        "url": "https://example.com/example"
      },
      "cheapest_offer": {
        "currency": "example",
        "merchant_id": "example",
        "price": 0
      },
      "condition": "example",
      "currency": "example",
      "description": "example",
      "id": "example",
      "image_url": "https://example.com/example",
      "installment": {
        "currency": "example",
        "interval": "example",
        "price": 0,
        "term_length": 0
      },
      "out_of_stock": false,
      "platform": "example",
      "price": 0,
      "price_drop": {
        "oldPrice": {},
        "percent": "example"
      },
      "rank": 0,
      "rating": {
        "max": 0,
        "value": 0,
        "votes": 0
      },
      "retailers_count": 0,
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "query": "example",
  "region": "example",
  "total": 0
}
```

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