Discover/Argos API
live

Argos APIargos.co.uk

Search, browse, and retrieve product details from Argos UK. Access prices, reviews, promotions, category navigation, and store stock via 5 endpoints.

Endpoint health
verified 7d ago
get_categories
browse_category
search_products
get_product_details
4/4 passing latest checkself-healing
Endpoints
5
Updated
21d ago

What is the Argos API?

The Argos UK API gives developers access to 5 endpoints covering product search, category browsing, product details, category navigation, and store stock availability. The search_products endpoint returns up to 60 products per page with sorting by relevance, price, or rating, while get_product_details returns structured attributes including brand, pricing, delivery and collection flags, review statistics, and active promotions.

Try it
Page number for pagination.
Sort order for results.
Search keyword (e.g. 'laptop', 'gaming chair')
api.parse.bot/scraper/01541198-68b1-4b54-9e28-1fe4fec44226/<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/01541198-68b1-4b54-9e28-1fe4fec44226/search_products?page=1&sort=Relevance&query=laptop' \
  -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 argos-co-uk-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: Argos UK Product API — search, browse categories, get product details."""
from parse_apis.argos_uk_product_api import Argos, Sort, ProductNotFound

client = Argos()

# Search for laptops sorted by price ascending, capped at 5 items.
for item in client.productsummaries.search(query="laptop", sort=Sort.PRICE_ASC, limit=5):
    print(item.id, item.title)

# Drill into the first search result for full product details.
first = client.productsummaries.search(query="gaming chair", limit=1).first()
if first:
    detail = first.details()
    print(detail.name, detail.brand, detail.price)

# Browse a category to see available products.
for product in client.categoryproducts.browse(
    category_slug="technology/laptops-and-pcs/laptops", category_id="30049", limit=3
):
    print(product.id, product.name, product.price, product.brand)

# List navigation categories.
for cat in client.categories.list(limit=5):
    print(cat.name, cat.url)

# Get a product by ID with typed error handling.
try:
    product = client.products.get(product_id="7806544")
    print(product.name, product.brand, product.avg_rating, product.review_count)
except ProductNotFound as exc:
    print(f"Product not found: {exc}")

print("exercised: productsummaries.search / .details / categoryproducts.browse / categories.list / products.get")
All endpoints · 5 totalmissing one? ·

Search for products by keyword with optional pagination and sorting. Returns up to 60 products per page from the Argos catalogue. Results include product IDs and titles. When Akamai protection blocks the request, proxy rotation resolves it.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
queryrequiredstringSearch keyword (e.g. 'laptop', 'gaming chair')
Response
{
  "type": "object",
  "fields": {
    "version": "string, data format version",
    "products": "array of product objects with id and title",
    "totalPages": "integer, total number of pages available",
    "currentPage": "integer, current page number",
    "totalNumberOfAllProducts": "integer, total matching products count"
  },
  "sample": {
    "data": {
      "version": "1.0",
      "products": [
        {
          "id": "8398037",
          "title": "HP 14-ep2001na 14in Intel N1504GB 128GB Laptop"
        },
        {
          "id": "7825697",
          "title": "Samsung Galaxy 14in 4GB 64GB Chromebook Go - Silver"
        }
      ],
      "totalPages": 7,
      "currentPage": 1,
      "rank1CountForCurrentPage": 60,
      "totalNumberOfAllProducts": 368
    },
    "status": "success"
  }
}

About the Argos API

Product Search and Browsing

The search_products endpoint accepts a query string and optional page and sort parameters. Accepted sort values are Relevance, PriceAsc, PriceDesc, and TopRated. The response includes a products array alongside totalPages, currentPage, and totalNumberOfAllProducts — enough to build full paginated result sets. The browse_category endpoint takes a category_slug and category_id pair (discoverable via get_categories) and behaves differently depending on category type: leaf categories return a products array with filters and breadcrumbs, while hub categories return a subcategories array and an empty products array.

Product Details and Related Data

get_product_details takes a single product_id and returns a data object containing the product's name, brand, description, deliverable and collectable booleans, and price information, plus a relationships block. The included array contains related resources: prices, review statistics, and any active promotions attached to the product. This makes it straightforward to surface availability modes and promotional state alongside core listing data.

Category Navigation and Store Stock

get_categories requires no inputs and returns the full top-level and nested category structure from the Argos homepage, with each entry carrying a name and url field usable directly as category_slug input. check_stock_by_postcode accepts a UK postcode and product_id and returns a stores array indicating nearby store availability. Note that this endpoint is documented as intermittently blocked by site protection, so applications relying on it should handle failure cases.

Reliability & maintenanceVerified

The Argos API is a managed, monitored endpoint for argos.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when argos.co.uk 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 argos.co.uk 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
4/4 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
  • Build a UK retail price tracker that monitors Argos product prices over time using get_product_details
  • Aggregate Argos promotions and active deals by polling included promotion resources from product detail responses
  • Create a product comparison tool using brand, price, and review statistics from get_product_details
  • Map the full Argos category hierarchy for site navigation or taxonomy analysis using get_categories and browse_category
  • Check in-store stock availability at nearby Argos locations for a given product using check_stock_by_postcode
  • Build a search results page or shopping feed filtered and sorted by price or rating via search_products
  • Identify top-rated products within a specific Argos leaf category using browse_category with the TopRated sort
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 Argos have an official public developer API?+
Argos does not publish a public developer API for product data, categories, or stock availability. There is no documented API key program or official developer portal for third-party access.
What does browse_category return for hub categories versus leaf categories?+
For hub (CLP) pages — top-level or mid-level categories — the response returns a subcategories array and an empty products array. For leaf (PLP) pages — the deepest navigable categories — it returns a populated products array along with filters, breadcrumbs, categoryName, and totalProducts. Use get_categories to find valid category_slug and category_id pairs before calling this endpoint.
Does check_stock_by_postcode always return reliable results?+
Not always. The endpoint is documented as intermittently blocked by site protection, meaning requests may fail without a consistent error pattern. Applications should treat this endpoint as best-effort and implement retry or fallback logic rather than assuming a response on every call.
Does the API expose Argos seller marketplace data or third-party seller listings?+
Not currently. The API covers first-party Argos product listings, prices, promotions, and store stock. Argos does operate a marketplace with third-party sellers, but that data is not exposed by these endpoints. You can fork this API on Parse and revise it to add an endpoint targeting marketplace seller data.
Can I retrieve individual customer review text through these endpoints?+
Not currently. The get_product_details endpoint returns review statistics (aggregate rating data) via the included array, but individual review text and reviewer details are not returned. You can fork this API on Parse and revise it to add a dedicated reviews endpoint that returns per-review content.
Page content last updated . Spec covers 5 endpoints from argos.co.uk.
Related APIs in EcommerceSee all →
amazon.co.uk API
Access data from amazon.co.uk.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
asda.com API
Access data from asda.com.
sainsburys.co.uk API
Access Sainsbury's grocery catalogue: search products by keyword, browse the full category hierarchy, retrieve detailed product information, and discover trending searches.
folksy.com API
Search and browse handmade products on Folksy by category, subcategory, or shop, and access detailed product information including pricing and availability. Discover sales and special offers while exploring artisan shops and their complete listings.
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
emag.ro API
Access product data from eMAG.ro, Romania's largest online retailer. Search by keyword, browse categories, retrieve product details and reviews, and look up seller information.
skroutz.gr API
Search and compare products across Greek retailers with real-time pricing, store availability, and historical price trends from Skroutz.gr. Browse categories, view detailed product information, and read customer reviews to find the best deals on any item.