Extract product listings from any IKEA search results page. Returns structured listings with price, rating, dimensions, availability, and pagination metadata via website crawler.
IKEA search pages are backed by the SIK search API. Piloterr resolves the locale and query from your URL, fetches the search payload, and returns normalized product cards as JSON. No manual parsing or proxy setup required.
GET https://api.piloterr.com/v2/ikea/search?query=https://www.ikea.com/fr/fr/search/?q=meuble
Pagination via ?page=2 in the URL:
GET https://api.piloterr.com/v2/ikea/search?query=https://www.ikea.com/fr/fr/search/?q=meuble&page=2
| Parameter |
Type |
Required |
Description |
query |
string |
yes |
Full IKEA search URL with q parameter |
| Field |
Type |
Description |
results |
array |
List of product listings |
results[].id |
string |
IKEA item number |
results[].url |
string |
Product page URL |
results[].title |
string |
Product name (e.g. KALLAX) |
results[].subtitle |
string | null |
Product type label |
results[].price |
string | null |
Formatted price |
results[].price_amount |
number | null |
Numeric price |
results[].currency |
string | null |
Currency code (e.g. EUR) |
results[].measure |
string | null |
Size reference text |
results[].rating |
number | null |
Average rating |
results[].reviews_count |
integer | null |
Number of reviews |
results[].image |
string | null |
Main image URL |
results[].online_sellable |
boolean | null |
Whether the item is sold online |
pagination.current |
integer |
Current page number |
pagination.next |
integer | null |
Next page number |
pagination.next_url |
string | null |
Next page URL |
pagination.total_pages |
integer |
Total pages |
pagination.total_count |
integer |
Total matching products |
pagination.per_page |
integer |
Results on this page |
pagination.has_next_page |
boolean |
Whether a next page exists |
- Supports any ikea.com locale path (
/fr/fr/, /gb/en/, /de/de/, etc.).
- The
q query parameter is required in the search URL.
- Append
&page=2 for pagination.
- Pass a product URL to the IKEA Product endpoint for full details, gallery, variants, and dimensions.
- Monitor IKEA catalog prices and availability across countries
- Build product discovery feeds for furniture and home retail apps
- Track search result pagination for market intelligence
- Enrich e-commerce pipelines with IKEA product metadata