Endpoint Playground
Test Crawlora's Wendy's Time Slots 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/wendys/time-slots?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Numeric store id, e.g. from /wendys/nearby's stores[].store_id or /wendys/restaurant's store_id |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "12921",
"asap_available": false,
"available_times": [
"2026-09-04T10:05:00",
"2026-09-04T10:10:00",
"2026-09-04T10:15:00"
],
"count": 3,
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/getCheckInTimes?...",
"fetched_at": "2026-09-04T00:00:00Z"
}
}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 one restaurant's available mobile-order arrival ("check-in") time slots -- the times a caller can schedule a mobile pickup order for, distinct from the restaurant's general open/close hours (GET /wendys/restaurant, /wendys/store). Found via static analysis of Wendy's official Android app and confirmed credential-free: a cold, cookie-less request with just a store id returns real available slots, no session or account required.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "12921",
"asap_available": false,
"available_times": [
"2026-09-04T10:05:00",
"2026-09-04T10:10:00",
"2026-09-04T10:15:00"
],
"count": 3,
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/getCheckInTimes?...",
"fetched_at": "2026-09-04T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/time-slots?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"