Endpoint Playground
Test Crawlora's Resy Events 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/events?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Resy location code or numeric id (from a prior resy-search/resy-restaurant response's location_code field) | |
| date | string | No | Only return events starting on or after this date, YYYY-MM-DD; defaults to today | |
| limit | integer | No | Max events returned, default 10 | |
| offset | integer | No | Page past the first `limit` events, default 0 |
{
"code": 200,
"msg": "OK",
"data": {
"location": "ny",
"total": 397,
"events": [
{
"shift_id": 3453602,
"name": "The Bonnie Brunch & Citi Field Trip!",
"date": "2026-09-20",
"time": "09:30:00",
"end_time": "17:00:00",
"min_party_size": 1,
"max_party_size": 8,
"price_min": 85,
"price_max": 85,
"currency": "USD",
"restaurant_id": "6737",
"restaurant_name": "The Bonnie",
"restaurant_url_slug": "the-bonnie",
"neighborhood": "Astoria",
"city": "Queens"
}
]
}
}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 ticketed dining events (fixed-price, fixed-capacity experiences a restaurant hosts and sells tickets for, distinct from a regular reservation) in a Resy location. Credential-free, read-only discovery -- does not create, hold, or purchase a ticket.
{
"code": 200,
"msg": "OK",
"data": {
"location": "ny",
"total": 397,
"events": [
{
"shift_id": 3453602,
"name": "The Bonnie Brunch & Citi Field Trip!",
"date": "2026-09-20",
"time": "09:30:00",
"end_time": "17:00:00",
"min_party_size": 1,
"max_party_size": 8,
"price_min": 85,
"price_max": 85,
"currency": "USD",
"restaurant_id": "6737",
"restaurant_name": "The Bonnie",
"restaurant_url_slug": "the-bonnie",
"neighborhood": "Astoria",
"city": "Queens"
}
]
}
}curl "https://api.crawlora.net/api/v1/resy/events?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"