Endpoint Playground
Test Crawlora's Resy Event Detail 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/event?event_url_slug=<event_url_slug>&restaurant_url_slug=<restaurant_url_slug>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| event_url_slug | string | Yes | Event url_slug, from a prior resy-events result | |
| restaurant_url_slug | string | Yes | Restaurant url_slug, from that same resy-events result's restaurant_url_slug | |
| location | string | Yes | Resy location code or numeric id, same value resy-events was called with | |
| party_size | integer | No | Party size, default 2 |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"packages": [
{
"name": "One Ticket for Breakfast & Citi Field Trip",
"price_total": 85,
"price_total_str": "$85.00",
"whats_included": [
"Breakfast - a selection of delicious brunch items",
"Two hour open bar at The Bonnie",
"Transportation to Citi Field",
"One ticket to the Mets Game at Citi Field!"
],
"quantity_total": 40,
"quantity_remaining": 22,
"min_party_size": 1,
"max_party_size": 8,
"timeslots": [
{
"start": "2026-09-20 09:30:00",
"end": "2026-09-20 17:00:00",
"seating_type": "One Ticket for Breakfast & Citi Field Trip",
"token": "rgs://resy/6737/4349436/6/2026-09-20/2026-09-20/09:30:00/2/GA"
}
]
}
]
}
}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 a ticketed dining event's full description, event-day instructions, and per-ticket-tier package breakdown (price, what's included, live ticket availability). All three identifiers come from a prior resy-events result: event_url_slug is that result's url_slug, restaurant_url_slug is its restaurant_url_slug, and location is the same city identifier resy-events was called with. Credential-free, read-only discovery -- does not purchase a ticket.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"packages": [
{
"name": "One Ticket for Breakfast & Citi Field Trip",
"price_total": 85,
"price_total_str": "$85.00",
"whats_included": [
"Breakfast - a selection of delicious brunch items",
"Two hour open bar at The Bonnie",
"Transportation to Citi Field",
"One ticket to the Mets Game at Citi Field!"
],
"quantity_total": 40,
"quantity_remaining": 22,
"min_party_size": 1,
"max_party_size": 8,
"timeslots": [
{
"start": "2026-09-20 09:30:00",
"end": "2026-09-20 17:00:00",
"seating_type": "One Ticket for Breakfast & Citi Field Trip",
"token": "rgs://resy/6737/4349436/6/2026-09-20/2026-09-20/09:30:00/2/GA"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/resy/event?event_url_slug=<event_url_slug>&restaurant_url_slug=<restaurant_url_slug>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"