# Klarna Stores API (https://www.socialcrawl.dev/platforms/klarna/stores) > Returns Klarna's retailer directory, 24 per page, each with store UUID, display name, Klarna store URL, icons, and checkout flags. Pagination is clean: page 2 had 24 new ids and zero overlap with page 1. USA totalHits was 10000 on 2026-09-02. Optional filters: categories (fashion, travel), cashback, shop_in_app, klarna_at_checkout. TL;DR: `GET /v1/klarna/stores` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `region` | no | Shopping region: usa (default), uk, germany, sweden, france, italy, spain, netherlands, austria, ireland, norway, finland, denmark. Changes currency, language, and the merchant set. (usa \| uk \| germany \| sweden \| france \| italy \| spain \| netherlands \| austria \| ireland \| norway \| finland \| denmark) | | `size` | no | Stores per page, 1 to 100. Default 24. | | `offset` | no | Row offset, starting at 0. Prefer the universal cursor parameter. | | `categories` | no | Store category filter, for example fashion or travel. | | `cashback` | no | When true, keep stores that offer cashback. | | `shop_in_app` | no | When true, keep stores available in the Klarna app. | | `klarna_at_checkout` | no | When true, keep stores with Klarna at checkout. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/klarna/stores" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Klarna API: https://www.socialcrawl.dev/platforms/klarna ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing