Endpoint Playground
Test Crawlora's Resy Search 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/search?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | No | Free-text search term (name, cuisine, or neighborhood) | |
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| date | string | No | Reservation date, YYYY-MM-DD; when set, results include live timeslots | |
| party_size | integer | No | Party size, default 2 | |
| size | integer | No | Max results, default 10 |
{
"code": 200,
"msg": "OK",
"data": {
"term": "carbone",
"total": 1,
"available_cuisines": [
"Italian",
"Steakhouse",
"Kosher"
],
"results": [
{
"id": "6194",
"name": "Carbone",
"cuisines": [
"Italian"
],
"price_range": 4,
"rating": 4.75,
"review_count": 33837,
"neighborhood": "Greenwich Village",
"city": "New York",
"region": "NY",
"location_url_slug": "new-york-ny",
"location_code": "ny",
"url_slug": "carbone",
"latitude": 40.7279891,
"longitude": -74.0002311,
"phone_number": "+12122543000",
"timeslots": [
{
"start": "2026-09-20 19:00:00",
"end": "2026-09-20 20:30:00",
"seating_type": "Dining Room",
"token": "rgs://resy/6194/3533618/2/2026-09-20/2026-09-20/19: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.
Searches restaurants by free-text term (name, cuisine, or neighborhood) near a latitude/longitude, optionally including live bookable-timeslot availability for a given date and party size. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"term": "carbone",
"total": 1,
"available_cuisines": [
"Italian",
"Steakhouse",
"Kosher"
],
"results": [
{
"id": "6194",
"name": "Carbone",
"cuisines": [
"Italian"
],
"price_range": 4,
"rating": 4.75,
"review_count": 33837,
"neighborhood": "Greenwich Village",
"city": "New York",
"region": "NY",
"location_url_slug": "new-york-ny",
"location_code": "ny",
"url_slug": "carbone",
"latitude": 40.7279891,
"longitude": -74.0002311,
"phone_number": "+12122543000",
"timeslots": [
{
"start": "2026-09-20 19:00:00",
"end": "2026-09-20 20:30:00",
"seating_type": "Dining Room",
"token": "rgs://resy/6194/3533618/2/2026-09-20/2026-09-20/19:00:00/2/Dining Room"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/resy/search?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"