## klarna/category

`GET /v1/klarna/category`

Products in a category, sorted and filtered, with the sub-categories and brands the page offers.

*Klarna category products*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Category id, e.g. cl94 — e.g. `cl94` |
| `sort` | no | popularity, price_asc, price_desc, trend, name, rating or price_drop — e.g. `popularity` |
| `price_range` | no | Price band such as 50-500 |
| `limit` | no | Products per page, at most 48 — e.g. `48` |
| `cursor` | no | Offset from the previous page |
| `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/category?id=cl94" \
  -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": [],
  "category_id": "example",
  "count": 0,
  "cursor": null,
  "dropped": 0,
  "has_more": false,
  "items": [
    {
      "brand": "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"
    }
  ],
  "region": "example"
}
```

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