Endpoint Playground
Test Crawlora's Deliveroo Fulfillment Times 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/deliveroo/fulfillment-times?latitude=<latitude>&longitude=<longitude>&market=uk" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| market | string | No | uk | Deliveroo national market to search (default uk) |
{
"code": 200,
"msg": "OK",
"data": {
"methods": [
{
"method": "DELIVERY",
"label": "Delivery",
"asap": {
"label": "Now",
"timestamp": 1788447150
},
"days": [
{
"day": "TODAY",
"label": "Today",
"times": [
{
"label": "16:00 - 16:30",
"timestamp": 1788448500
},
{
"label": "16:15 - 16:45",
"timestamp": 1788449400
}
]
},
{
"day": "TOMORROW",
"label": "Tomorrow",
"times": [
{
"label": "11:15 - 11:45",
"timestamp": 1788516900
}
]
}
]
},
{
"method": "COLLECTION",
"label": "Pickup",
"asap": {
"label": "Now",
"timestamp": 1788447150
},
"days": []
}
]
}
}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 same "Choose a day" / "Choose a time" scheduled-ordering data the real site's own order-ahead picker shows for a location, for both delivery and pickup: an ASAP option plus every day currently open for a scheduled order, each with its real time slots and UNIX timestamps.
{
"code": 200,
"msg": "OK",
"data": {
"methods": [
{
"method": "DELIVERY",
"label": "Delivery",
"asap": {
"label": "Now",
"timestamp": 1788447150
},
"days": [
{
"day": "TODAY",
"label": "Today",
"times": [
{
"label": "16:00 - 16:30",
"timestamp": 1788448500
},
{
"label": "16:15 - 16:45",
"timestamp": 1788449400
}
]
},
{
"day": "TOMORROW",
"label": "Tomorrow",
"times": [
{
"label": "11:15 - 11:45",
"timestamp": 1788516900
}
]
}
]
},
{
"method": "COLLECTION",
"label": "Pickup",
"asap": {
"label": "Now",
"timestamp": 1788447150
},
"days": []
}
]
}
}curl "https://api.crawlora.net/api/v1/deliveroo/fulfillment-times?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"