Endpoint Playground
Test Crawlora's Resy Availability 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/resy/availability?restaurant_id=<restaurant_id>&date=<date>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_id | string | Yes | Resy restaurant id | |
| date | string | Yes | Reservation date, YYYY-MM-DD | |
| party_size | integer | No | Party size, default 2 |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "87134",
"date": "2026-09-20",
"party_size": 2,
"timeslots": [
{
"start": "2026-09-20 16:00:00",
"end": "2026-09-20 17:30:00",
"seating_type": "Dining Room",
"min_party_size": 1,
"max_party_size": 2,
"token": "rgs://resy/87134/3533618/2/2026-09-20/2026-09-20/16:00:00/2/Dining Room"
}
]
}
}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 bookable reservation timeslots Resy currently shows for a restaurant, date, and party size -- the same read-only availability an anonymous visitor sees before signing in. This is discovery only; it does not create, hold, modify, or cancel a reservation.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "87134",
"date": "2026-09-20",
"party_size": 2,
"timeslots": [
{
"start": "2026-09-20 16:00:00",
"end": "2026-09-20 17:30:00",
"seating_type": "Dining Room",
"min_party_size": 1,
"max_party_size": 2,
"token": "rgs://resy/87134/3533618/2/2026-09-20/2026-09-20/16:00:00/2/Dining Room"
}
]
}
}curl "https://api.crawlora.net/api/v1/resy/availability?restaurant_id=<restaurant_id>&date=<date>" \
-H "x-api-key: $CRAWLORA_API_KEY"