Discover/Kinguin API
live

Kinguin APIkinguin.net

Access Kinguin's game key catalog via API. Search products, compare seller offers, read user reviews, and browse bestsellers and new releases.

Endpoint health
verified 7d ago
get_product_details
get_bestsellers
get_product_reviews
get_new_releases
get_product_offers
6/6 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the Kinguin API?

This API provides 7 endpoints covering Kinguin's digital game key marketplace, returning product metadata, seller offers, user reviews, trending searches, bestsellers, and new releases. The get_product_offers endpoint returns a full list of seller offers for a given product slug, including per-offer prices and seller details. The search_products endpoint supports keyword queries, platform and genre filters, and multiple sort strategies with paginated results.

Try it
Zero-based page number for pagination.
Sort order as field,direction. Accepted values: bestseller.total,DESC, createDate,DESC, price.lowestOffer,ASC, price.lowestOffer,DESC.
Number of results per page.
Search keyword (e.g. elden ring, windows 11).
JSON-encoded object of filter key-value pairs passed as query params.
api.parse.bot/scraper/3b02dd55-3ca3-47f0-b4ac-81c8f06d8c0b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3b02dd55-3ca3-47f0-b4ac-81c8f06d8c0b/search_products?page=0&sort=bestseller.total%2CDESC&limit=5&query=elden+ring&filters=%7B%22platform%22%3A+2%7D' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace kinguin-net-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Kinguin SDK — search catalog, compare offers, check reviews."""
from parse_apis.kinguin_catalog_api import Kinguin, Sort, ProductNotFound

client = Kinguin()

# Search for products by keyword, sorted by price ascending.
for product in client.products.search(query="elden ring", sort=Sort.PRICE_ASC, limit=3):
    print(product.name, product.price.lowest_offer, product.vendor)

# Browse bestsellers and drill into the first one.
top = client.products.bestsellers(limit=1).first()
if top:
    detail = top.refresh()
    print(detail.name, detail.price.calculated, detail.created_at)

    # Check seller offers for this product.
    for offer in top.offers.list(limit=3):
        print(offer.seller.name, offer.price.amount, offer.price.currency)

    # Check reviews for this product.
    for review in top.reviews.list(limit=3):
        print(review.user_name, review.rate, review.review[:80])

# Typed error handling: construct a product and attempt to refresh.
try:
    missing = client.product(id="000000000000000000000000")
    missing.refresh()
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

print("exercised: products.search / products.bestsellers / refresh / offers.list / reviews.list / product()")
All endpoints · 7 totalmissing one? ·

Search for products by keyword with optional sorting and filtering. Returns paginated results from Kinguin's catalog.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
sortstringSort order as field,direction. Accepted values: bestseller.total,DESC, createDate,DESC, price.lowestOffer,ASC, price.lowestOffer,DESC.
limitintegerNumber of results per page.
querystringSearch keyword (e.g. elden ring, windows 11).
filtersstringJSON-encoded object of filter key-value pairs passed as query params.
Response
{
  "type": "object",
  "fields": {
    "hits": "array of product objects with id, name, price, attributes, etc.",
    "page": "current page number (zero-based)",
    "nbHits": "total number of matching products",
    "nbPages": "total number of pages",
    "hitsPerPage": "number of results per page"
  },
  "sample": {
    "data": {
      "hits": [
        {
          "id": "68395716df669744fd805c58",
          "name": "NIGHTREIGN (EU Steam) Mystery Steam CD Key",
          "price": {
            "calculated": 599,
            "lowestOffer": 599,
            "subscription": 527
          },
          "active": true,
          "seller": {},
          "vendor": "kinguin",
          "imageUrl": "https://static.kinguin.net/media/images/products/000_202509151402_173x120.jpg",
          "attributes": {
            "urlKey": "nightreign-eu-steam-mystery-steam-cd-key",
            "platform": 2,
            "releaseDate": "2025-05-30"
          },
          "createDate": "2025-05-30T06:58:30.074",
          "externalId": "345376"
        }
      ],
      "page": 0,
      "nbHits": 504,
      "nbPages": 101,
      "hitsPerPage": 5
    },
    "status": "success"
  }
}

About the Kinguin API

Search and Browse

The search_products endpoint accepts a query string (e.g. "elden ring") and an optional filters parameter — a JSON-encoded object supporting keys like platform and genres. Results come back paginated with hits, nbHits, nbPages, and hitsPerPage fields. Sort order is controlled via the sort parameter, accepting values such as "bestseller.total,DESC" or "createDate,DESC". get_bestsellers and get_new_releases are convenience wrappers that return the same hits shape sorted by sales volume and creation date respectively, both accepting page and limit params.

Product Details and Offers

get_product_details takes a 24-character hex product ID (a MongoDB ObjectId obtainable from search_products results) and returns full metadata: name, price (with lowestOffer, calculated, and subscription sub-fields, all in cents), attributes including platform, genres, region, keywords, and urlKey, plus breadcrumbs and an externalId. The get_product_offers endpoint uses a slug in the format "<externalId>/<url-key>" and returns offers.mainOffer, a paginated offers.collection with per-seller pricing, product images, videos, and an optional description string.

Reviews and Trending

get_product_reviews accepts a hex product ID with optional page and size params. The response includes a _embedded.productReviewList array of individual review entries alongside aggregate reviewRate and reviewCount fields. get_trending requires no inputs and returns a searches array of currently trending search terms on Kinguin, useful for surfacing popular titles in real time.

Reliability & maintenanceVerified

The Kinguin API is a managed, monitored endpoint for kinguin.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kinguin.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official kinguin.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track the lowest seller offer price for a specific game key by polling get_product_offers on a schedule
  • Build a game price comparison tool using search_products filtered by platform and region
  • Display aggregated review scores and individual comments using get_product_reviews alongside product listings
  • Populate a 'trending games' section using the get_trending endpoint's searches array
  • Sync a game catalog with current bestseller rankings via get_bestsellers with pagination
  • Monitor new game key listings by regularly querying get_new_releases sorted by createDate,DESC
  • Resolve full product metadata (platform, genre, region, price) from a search hit's hex ID using get_product_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Kinguin have an official developer API?+
Kinguin offers a Merchant API documented at https://docs.kinguin.net, aimed at resellers and business partners. It requires an approved merchant account. This Parse API covers the public catalog data — search, product details, offers, and reviews — without requiring a merchant relationship.
How do I get seller offer prices for a specific product?+
get_product_offers returns an offers object containing mainOffer (the featured listing) and a collection array of individual seller offers with per-offer pricing. The slug input must be in the format "<externalId>/<url-key>" — both values are available from get_product_details via the externalId field and attributes.urlKey.
What does the price field in `get_product_details` represent?+
The price object contains three sub-fields: lowestOffer, calculated, and subscription, all expressed in cents (integer). For example, a lowestOffer value of 599 represents $5.99. Offers with live per-seller breakdowns are returned by get_product_offers rather than this field.
Does the API expose purchase history, order status, or user account data?+
Not currently. The API covers catalog browsing, product metadata, seller offers, and user reviews. You can fork it on Parse and revise it to add endpoints targeting account-specific or order-related data if your use case requires it.
Are product IDs stable across searches?+
Product IDs returned in search_products hits are 24-character MongoDB ObjectIds and are consistent across search_products, get_product_details, and get_product_reviews. However, get_product_offers uses a slug format (externalId/url-key) rather than the hex ID, so you may need to call get_product_details first to assemble the correct slug.
Page content last updated . Spec covers 7 endpoints from kinguin.net.
Related APIs in MarketplaceSee all →
cdkeys.com API
Search and browse digital game keys across thousands of titles, view product details, pricing, and discover best sellers and latest releases from CDKeys. Filter games by category, compare options, and stay updated on the newest game key listings available.
g2a.com API
Search for game keys and get real-time pricing, seller ratings, and detailed product information from G2A's marketplace. Browse available categories and find the best deals on digital game licenses from verified sellers.
allkeyshop.com API
Search for games and compare CD key prices across multiple sellers to find the best deals, while tracking price history and viewing detailed store information. Get instant access to current game offers and pricing data to make informed purchasing decisions.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
eneba.com API
Access data from eneba.com.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.
store.steampowered.com API
Search Steam Store listings, fetch featured categories (specials, top sellers, new releases), and retrieve app details and user reviews by Steam AppID.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.