Endpoint
GET /api/public/v1/products
Returns every active product with embedded brand, keyway, star rating, product images, product documents, variants,
and variant attributes. Archived products and archived variants are excluded. Results are paginated at 100 products
per page; use ?page=2, ?page=3, and so on.
{
"data": [
{
"id": 123,
"title": "Example Product",
"slug": "example-product",
"canonical_url": "https://www.lockandkey.co.uk/product/example-product",
"updated_at": "2026-06-10T10:00:00+00:00",
"description_md": "## Description",
"additional_info_md": null,
"ai_summary": "Example Product. Example Brand. Euro Cylinders. keyway AB. 3 Star. Description.",
"availability": "in_stock",
"dispatch_estimate": "Typically dispatched same working day when in stock and ordered before the published cut-off.",
"price_exc_vat": "12.50",
"price": { "exc_vat": "12.50", "inc_vat": "15.00", "currency_symbol": "£", "vat_rate": "0.2000" },
"price_range": {
"min": { "exc_vat": "12.50", "inc_vat": "15.00", "currency_symbol": "£", "vat_rate": "0.2000" },
"max": { "exc_vat": "12.50", "inc_vat": "15.00", "currency_symbol": "£", "vat_rate": "0.2000" },
"varies": false
},
"price_range_inc_vat": { "min": "15.00", "max": "15.00", "varies": false },
"trade_pricing_available": true,
"featured": false,
"category": { "id": 5, "title": "Euro Cylinders", "slug": "euro-cylinders", "path": "locks/euro-cylinders", "url": "..." },
"category_path": ["Locks", "Euro Cylinders"],
"brand_id": 9,
"brand": { "id": 9, "name": "Example Brand", "slug": "example-brand", "logo_url": "..." },
"keyway": { "id": 4, "name": "AB", "slug": "ab", "allow_keyed_alike": true, "allow_extra_keys": true, "keyed_alike_price_exc_vat": "1.00", "extra_key_price_exc_vat": "2.00" },
"compatible_keyways": ["AB"],
"keyed_alike_available": true,
"star_rating": { "id": 3, "name": "3 Star", "slug": "3-star" },
"documents": [
{
"id": 12,
"label": "Installation Guide",
"display_label": "Installation Guide",
"original_filename": "guide.pdf",
"mime_type": "application/pdf",
"size_bytes": 65536,
"download_url": "..."
}
],
"images": [{ "id": 77, "image_url": "...", "sort_order": 1 }],
"variants": [
{
"id": 456,
"product_id": 123,
"part_number": "EX-001",
"canonical_url": "https://www.lockandkey.co.uk/product/example-product",
"description": "Brass / 30-30",
"availability": "in_stock",
"available_to_purchase": true,
"gtin": "5012345678900",
"mpn": "EX-001",
"manufacturer_reference": "EX-001-BRASS",
"price_exc_vat": "12.50",
"price": { "exc_vat": "12.50", "inc_vat": "15.00", "currency_symbol": "£", "vat_rate": "0.2000" },
"trade_pricing_available": true,
"images": [{ "id": 88, "image_url": "...", "sort_order": 0 }],
"attributes": [{ "name": "Finish", "value": "Brass" }]
}
]
}
],
"meta": {
"count": 1,
"total": 245,
"page": 1,
"per_page": 100,
"last_page": 3,
"schema_version": "v1"
}
}