Endpoint Playground
Test Crawlora's Just Eat Search Filters API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/justeat/search/filters?postcode=<postcode>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| postcode | string | Yes | UK postcode to look up |
{
"code": 200,
"msg": "OK",
"data": {
"postcode": "EC1A 1BB",
"total_count": 2173,
"filters": [
{
"filter": "groceries",
"count": 237
},
{
"filter": "open_now",
"count": 842
},
{
"filter": "pizza",
"count": 193
},
{
"filter": "vegan",
"count": 58
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the exact filter slugs Just Eat's own area page currently offers for a UK postcode -- star-rating thresholds, boolean toggles (open_now, new, free_delivery, halal, vegan, ...), cuisine tiles (pizza, chinese, italian, ...), and non-restaurant top-nav verticals (groceries, alcohol, pharmacy, electronics, flowers, gifts, and more) alike -- each with the live count of restaurants it currently narrows this postcode's listing to. Every filter value is the literal string /justeat/search's repeatable filter parameter accepts. The slug set is genuinely postcode-dependent: a rural postcode's own area page offers fewer cuisine tiles than central London's, because Just Eat's own frontend never advertises a filter with zero local coverage -- call this endpoint again for a different postcode rather than assume one location's slug set applies everywhere.
{
"code": 200,
"msg": "OK",
"data": {
"postcode": "EC1A 1BB",
"total_count": 2173,
"filters": [
{
"filter": "groceries",
"count": 237
},
{
"filter": "open_now",
"count": 842
},
{
"filter": "pizza",
"count": 193
},
{
"filter": "vegan",
"count": 58
}
]
}
}curl "https://api.crawlora.net/api/v1/justeat/search/filters?postcode=<postcode>" \
-H "x-api-key: $CRAWLORA_API_KEY"