# Klarna Store Products API (https://www.socialcrawl.dev/platforms/klarna/store-products) > Returns products sold by one Klarna retailer, 25 per page by default. Pagination is clean: Walmart page 2 had 25 new ids and zero overlap with page 1. Unknown store ids return an empty page and are not billed. TL;DR: `GET /v1/klarna/store/products` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `id` | yes | Klarna store UUID, the last segment of storeKrn: 09f4d635-0452-4f63-9455-c45420d95669 for Walmart US. Ids come back on every row of GET /v1/klarna/stores. | | `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 | Products per page, 1 to 100. Default 25. | | `offset` | no | Row offset, starting at 0. Prefer the universal cursor parameter. | | `sort_by` | no | Result ordering: popularity (default), price_low, price_high, trend, name, rating, or price_drop. (popularity \| price_low \| price_high \| trend \| name \| rating \| price_drop) | | `price_range` | no | Price filter as min-max, for example 50-500, or 50- for 50 and above. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/klarna/store/products?id=09f4d635-0452-4f63-9455-c45420d95669" \ -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