100 free credits. No credit card required.Start building
Logo
Klarna logo
100 free credits. No credit card required

Klarna Scraper API

Access 18 Klarna API endpoints through one unified interface for profiles, posts, comments, search, and more. When an endpoint supports a computed field and the required source inputs are present, that optional field is included in the unified response.

TL;DR

The Klarna API by SocialCrawl returns Klarna data as structured JSON: 18 endpoints behind one x-api-key, from 1 credit per call. It shares one unified schema with 59 other platforms, so the same client code works everywhere.

Live demo

Try the Klarna API in your browser

Type a real handle, run a real request, see the JSON SocialCrawl returns. No signup, no key. Same response shape you get in production.

Returns one Klarna shopping product by id or URL: title, description, brand, rating, review count, and specifications. List price lives on product/offers.

Use it when you already have a product id (3331931731) plus a category id, or a klarna.com shopping URL. For discovery, start at search or category.

Try the Klarna Product API

See real data before writing a single line

GET/v1/klarna/product
4 optional parameters

Klarna product id, the numeric id in a shopping URL: klarna.com/us/shopping/pl/cl94/3331931731/... is product id 3331931731. Product ids also come back on every row of GET /v1/klarna/search and GET /v1/klarna/category.

Full Klarna shopping URL, for example https://www.klarna.com/us/shopping/pl/cl94/3331931731/Headphones/Apple-AirPods-4-with-Active-Noise-Cancellation-White/. The product id and category id are extracted from the path.

Klarna category id, for example cl94 for Headphones or t1 for TV and Audio. Ids come from GET /v1/klarna/categories and from search rows as category.id. Required for GET /v1/klarna/product when you pass product_id instead of a shopping URL.

Shopping region: usa (default), uk, germany, sweden, france, italy, spain, netherlands, austria, ireland, norway, finland, denmark. Changes currency, language, and the merchant set.

Endpoints

What data does the Klarna API return?

Every endpoint returns structured JSON in a unified envelope. Computed fields such as engagement rate and content category are included only where the endpoint supports them and the required source inputs are present.

Last updated September 2026

Maintained by the SocialCrawl team, reviewed September 2026

Productadvanced

Get a Klarna product by id or URL

Product Offersadvanced

List merchant offers for a Klarna product

Searchadvanced

Search Klarna products by keyword

Search Suggestionsstandard

Get Klarna search suggestions

Reviewsadvanced

Get Klarna user reviews for a product

Reviews Proadvanced

Get Klarna professional reviews for a product

Reviews Overviewadvanced

Get Klarna review totals and score distributions

Product Price Historyadvanced

Get Klarna price history for a product

Product Compareadvanced

Compare two Klarna products

Categoryadvanced

Browse Klarna products in a category

Categoriesstandard

List Klarna root categories

Categories Childrenstandard

Get Klarna sub-categories

Category Filtersstandard

Get Klarna filters for a category

Category Keywordsstandard

Get popular Klarna search keywords for a category

Category Guidestandard

Get Klarna buying-guide content for a category

Storesstandard

List Klarna shopping stores

Store Productsadvanced

List products from a Klarna store

Store Filtersstandard

Get Klarna filters for a store page

What you get

What Klarna data can you get?

Every Klarna endpoint uses the same response envelope, so one parser handles the whole platform. These are fields returned by current public responses, subject to each endpoint's documented cache window.

Fields you get back in a Klarna response include:

  • title
  • url
  • description
  • engagement_rate_percentages
  • recent_posts
  • followers
  • comments
  • likes
  • recent_posts_explanation
  • id_user
  • username
  • is_private
  • posts_details
Quickstart

How to scrape Klarna in 3 steps

No proxies, no headless browsers, no login sessions. Send one authenticated GET request and read structured JSON back.

  1. 1

    Get a free API key

    Create an account and copy your key from the dashboard. Signup includes 100 free credits, and no card is required.

  2. 2

    Call the Product endpoint

    Send a GET request with your key in the x-api-key header. Here is the full Klarna Product request:

    curl -H "x-api-key: YOUR_API_KEY" \
      "https://www.socialcrawl.dev/v1/klarna/product"
  3. 3

    Read the unified JSON

    The response comes back in the shared SocialCrawl schema. Where the endpoint supports them and the required source inputs are present, fields such as engagement_rate and content_category are filled in too. Your client can rely on the shared envelope while treating enriched fields as optional.

Requirements and limits

Requirements and limits

Everything you need to know before your first Klarna call.

Authentication
One API key, passed in the x-api-key request header. No OAuth flow, no app review, and no per-platform credentials to manage.
Pagination
List endpoints return a next_cursor and a has_more flag. Pass the cursor back to page through results, with the same contract on every platform.
Credits
Calls start at 1 credits and are deducted per request. Every account starts with 100 free credits, and credits never expire.
Rate limits
Two ceilings, both per API key and identical on every plan: 600 requests per minute and 50 simultaneous requests. Neither costs you a credit when it rejects a request, and past them your credit balance is the only throttle.
Pricing

How much does the Klarna API cost?

Simple credit-based pricing with no subscription. You pay per call, and the exact credit cost of every Klarna endpoint is listed below.

EndpointCredits per call
Product5 credits
Product Offers5 credits
Search5 credits
Search Suggestions1 credit
Reviews5 credits
Reviews Pro5 credits
Reviews Overview5 credits
Product Price History5 credits
Product Compare5 credits
Category5 credits
Categories1 credit
Categories Children1 credit
Category Filters1 credit
Category Keywords1 credit
Category Guide1 credit
Stores1 credit
Store Products5 credits
Store Filters1 credit

Every account starts with 100 free credits, and no card is required.

At credit-pack pricing that works out to roughly £0.002 to £0.03 per call, and credits never expire.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 60 platforms covering 10B+ monthly active users.

One schema, every platform

Query 60 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.

See your data before you code

Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 60 platforms
One API, 60 platforms

How does SocialCrawl handle 60 different platforms?

Social media scraping is hard. Schema normalization, authentication, rate limits, pagination. We handle all of it before your data arrives.

One schema, every platform

Write once, query them all.

60 platforms return 60 different JSON shapes. We normalize every response into one consistent structure.

Ready-to-use metrics

Metrics ready before you ask.

Normalized records include supported metrics such as engagement rate, estimated reach, content category, and language when the required source inputs are available.

Consistent pagination

One cursor, every platform.

Every platform paginates differently. We give you one consistent cursor-based system.

Freshness you control

Fresh when it matters. Free on repeat.

Cache misses fetch current public data. Identical requests are cached for 2 to 30 minutes by data type and cost 0 credits on a hit; send Cache-Control: no-cache for a billed refresh.

Things you'll never build

Auth, proxies, and rate limits, handled

Platform authentication, IP rotation, and rate limit management are all abstracted away. Just send a GET request.

Start for free
Reviews

What developers say

Rated 4.9 out of 5 from 200 developer reviews
The unified schema saved us weeks of integration work. One parser handles every platform.
Alex Chen, Full-Stack Developer
Our agents process social data from 60 platforms with zero platform-specific logic. One schema, end to end.
Sarah Kim, AI Engineer, AgentFlow
I paste an influencer's URL and get everything (followers, engagement rate, content categories) without touching code.
James Rivera, Marketing Director
We switched from building our own scrapers. SocialCrawl handles the hard stuff, we focus on insights.
Maria Santos, CTO, DataPulse
The computed fields alone (engagement_rate, estimated_reach, content_category) saved us an entire data pipeline.
David Park, Lead Data Scientist
Quick answers

How much does Klarna scraping cost?

SocialCrawl uses credit-based pricing: you pay per API call, and most Klarna endpoints cost just a few credits. Every account starts with 100 free credits. No subscriptions, no compute units, no credit card required.

See pricing

Is Klarna scraping legal?

SocialCrawl returns publicly available Klarna data. Courts have generally upheld scraping public data, most notably in hiQ v. LinkedIn, but compliance depends on your use case and jurisdiction. You are responsible for following applicable laws and platform terms.

Glossary

Common Klarna scraping terms

The phrases developers search for when they need Klarna data, and what each one means with SocialCrawl.

Klarna scraper API
A Klarna scraper API returns Klarna data as structured JSON without you running any scraping infrastructure. SocialCrawl handles the proxies, parsing, and format changes, so you call an endpoint and get clean fields back. Pricing starts at 1 credits per call.
Klarna data API
A Klarna data API is a programmatic way to read public Klarna data on demand. SocialCrawl exposes 18 Klarna endpoints behind one x-api-key, all sharing the same unified schema, so your integration never has to change per platform.
scrape Klarna
To scrape Klarna is to extract its public data programmatically instead of by hand. With SocialCrawl you scrape Klarna by sending a single authenticated request, and the response is normalised into the same JSON shape used across every platform.
Read the full API reference
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How much does the Klarna API cost?
Klarna endpoints are billed per call in credits: standard endpoints cost 1 credit, advanced 5, and premium 10. On Klarna that works out to between 1 and 5 credits per call. Every account starts with 100 free credits, and there is no subscription. You only pay for the calls you make.
Is scraping Klarna data legal?
SocialCrawl returns publicly available Klarna data and does not access private or login-gated content. Whether scraping fits your project depends on your use case and jurisdiction. You are responsible for complying with Klarna's terms of service and applicable data-protection laws such as GDPR and CCPA. This is general information, not legal advice.
Klarna scraping API vs the official Klarna API: what's the difference?
With SocialCrawl there is no app review or approval queue. Sign up and call Klarna endpoints immediately with a single x-api-key. Responses share one unified schema with every other SocialCrawl platform, and credit-based pricing replaces per-platform quotas. Official APIs are still the right choice for posting and other write actions: SocialCrawl is read-only data.

Ready to start scraping Klarna data?

Get your API key and access all 18 Klarna endpoints in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown