Discover/scan.co.uk API
live

scan.co.uk APIscan.co.uk

Access Scan.co.uk product listings, specs, GBP pricing, stock status, customer reviews, and daily offers via a structured REST API with 5 endpoints.

Endpoints
5
Updated
17d ago
Try it
Maximum number of product results to return.
Search keyword or LN code (e.g. 'RTX 4070', 'gaming mouse', 'SSD')
api.parse.bot/scraper/62877404-ff06-4323-ae9d-6b42ac998ee4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/62877404-ff06-4323-ae9d-6b42ac998ee4/search_products?limit=5&query=gaming+mouse' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for products using keywords or LN codes. Returns a list of matching products with names, prices, stock status, and URLs. The search uses Scan's live search API which returns results ranked by relevance.

Input
ParamTypeDescription
limitintegerMaximum number of product results to return.
queryrequiredstringSearch keyword or LN code (e.g. 'RTX 4070', 'gaming mouse', 'SSD')
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of results from the search API",
    "products": "array of product objects with name, price, price_is_gross, ln_code, url, image_url, web_product_id, in_stock"
  },
  "sample": {
    "data": {
      "total": 200,
      "products": [
        {
          "url": "https://www.scan.co.uk/products/pny-nvidia-geforce-rtx-5070-oc-12gb-gddr7-ray-tracing-graphics-card-6144-cores-2510mhz-boost",
          "name": "PNY NVIDIA GeForce RTX 5070 OC 12GB GDDR7 Ray-Tracing Graphics Card, DLSS 4, 6144 Cores, 2510MHz Boost",
          "price": 599.99,
          "ln_code": "155170",
          "in_stock": true,
          "image_url": "https://www.scan.co.uk/images/products/gt/3668192-gt-a.jpg",
          "price_is_gross": true,
          "web_product_id": 3668192
        }
      ]
    },
    "status": "success"
  }
}

About the scan.co.uk API

The Scan.co.uk API provides access to 5 endpoints covering product search, category browsing, detailed specifications, customer reviews, and daily limited-time offers from one of the UK's main computer hardware retailers. The search_products endpoint returns live results by keyword or LN code, including price, stock status, and image URL, while get_product_details resolves any LN code to a full specification sheet with availability.

Product Search and Category Browsing

The search_products endpoint accepts a query string — either a plain keyword like RTX 4070 or a specific LN code — and returns an array of product objects including name, price, ln_code, in_stock, image_url, and web_product_id. An optional limit parameter controls how many results are returned. The total field tells you the full result count from the underlying search, so you can gauge coverage without fetching everything.

The get_category_listings endpoint works differently: it requires both a category slug (e.g. computer-hardware) and a subcategory slug (e.g. gpu-nvidia-gaming) matching Scan's URL structure. Responses include name, price, manufacturer, ln_code, availability, and wpid per product, and a count of items returned. This is the right endpoint for building category-level price comparison views or monitoring stock across a product family.

Product Details and Reviews

get_product_details takes a product_id — either an LN code like 155343 or a URL slug — and returns a specifications object mapping spec names to their values, alongside price, title, availability, and the canonical url. The spec object is unstructured by design: fields vary by product type, so a GPU will carry different keys than a mechanical keyboard.

get_product_reviews accepts an ln_code and returns a BatchedResults object with two keys: q0 contains product-level metadata and aggregate rating statistics, while q1 holds individual reviews with rating scores, review text, and user information. Review data is sourced from Bazaarvoice. The get_today_only_offers endpoint takes no inputs and returns the current day's limited-time deals as an array of objects with name, price, ln_code, and url.

Identifiers and Coverage

Scan uses LN codes as the canonical product identifier across all endpoints — a product found via search_products returns an ln_code that can be passed directly to get_product_details or get_product_reviews. All prices are in GBP. The price_is_gross boolean in search results indicates whether the displayed price includes VAT, which matters for B2B purchasing comparisons.

Common use cases
  • Monitor daily price changes on specific GPUs or CPUs using search_products with LN codes
  • Build a UK computer hardware price tracker comparing products across Scan categories
  • Alert users when a specific product's in_stock status changes from false to true
  • Aggregate customer review scores from get_product_reviews for side-by-side product comparison
  • Scrape get_today_only_offers daily to surface time-limited Scan deals in a deal-aggregation app
  • Populate a product catalog with structured specifications from get_product_details for any LN code
  • Filter get_category_listings by subcategory slug to benchmark pricing across AMD vs Nvidia GPU lines
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Scan.co.uk have an official public developer API?+
Scan.co.uk does not publish a documented public developer API. This Parse API provides structured access to product, pricing, review, and offer data from the site.
What does the `get_product_details` endpoint return and how specific are the specifications?+
It returns a specifications object whose keys and values vary by product category — a GPU response will have fields like memory size and clock speed, while a peripheral will have different keys entirely. You also get price, title, availability, ln_code, and the canonical url. There is no fixed schema for specifications; consumers should handle the object dynamically.
Does the API support pagination for search results or category listings?+
The search_products endpoint exposes a limit parameter to cap results and a total field showing the full match count, but there is no offset or page parameter for paginating through additional results. get_category_listings returns a count with no pagination controls. You can fork this API on Parse and revise it to add offset-based pagination if your use case requires browsing beyond the initial result set.
Are historical prices or price history available through any endpoint?+
Not currently. All five endpoints return current pricing only — there is no price history or time-series data exposed. You can fork the API on Parse and revise it to add a scheduled endpoint that records and stores price snapshots over time.
How do I find the correct category and subcategory slugs for `get_category_listings`?+
The slugs follow Scan's URL path structure. For example, a URL like scan.co.uk/shop/computer-hardware/gpu-nvidia-gaming corresponds to category computer-hardware and subcategory gpu-nvidia-gaming. Inspecting Scan's navigation URLs is the most reliable way to identify valid slug combinations. Passing an invalid slug pair will return zero results.
Page content last updated . Spec covers 5 endpoints from scan.co.uk.
Related APIs in EcommerceSee all →
currys.co.uk API
Search and browse products from Currys.co.uk to find detailed specifications, current pricing, and real-time stock availability. Retrieve comprehensive product information across electronics categories to compare items and make informed purchasing decisions.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.
argos.co.uk API
argos.co.uk API
amazon.co.uk API
amazon.co.uk API
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.
coolblue.be API
Search and browse electronics products from Coolblue Belgium, including CPUs, GPUs, and smartphones, with instant access to detailed specifications, pricing, and availability. Find exactly what you need by category or search query, and check real-time stock and price information across their entire catalog.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.
nanoreview.net API
Search and compare CPUs, GPUs, SoCs, phones, and laptops with detailed specs and performance rankings from NanoReview. Get detailed information on specific tech products, view popular comparisons, and access user benchmark data to make informed purchasing decisions.