Endpoint Playground
Test Crawlora's Resy Restaurant 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/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_id | string | Yes | Resy restaurant id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "6194",
"name": "Carbone",
"cuisine": "Italian",
"url_slug": "carbone",
"price_range": 4,
"rating": 4.75,
"review_count": 33837,
"address": "181 Thompson Street",
"cross_street": "Bleecker Street",
"neighborhood": "Greenwich Village",
"city": "New York",
"region": "NY",
"location_code": "ny",
"postal_code": "10012",
"country": "United States",
"latitude": 40.7279891,
"longitude": -74.0002311,
"phone_number": "+12122543000",
"website": "http://carbonenewyork.com/",
"menu_url": "https://carbonenewyork.com/?menu=dinner",
"min_party_size": 1,
"max_party_size": 14,
"currency_symbol": "$",
"average_cost_per_person": "$150",
"description": "Carbone is an Italian restaurant in the Greenwich Village neighborhood of New York."
}
}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 restaurant's profile: name, cuisine, price tier, rating/review count, address/neighborhood, contact info, and description text. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"id": "6194",
"name": "Carbone",
"cuisine": "Italian",
"url_slug": "carbone",
"price_range": 4,
"rating": 4.75,
"review_count": 33837,
"address": "181 Thompson Street",
"cross_street": "Bleecker Street",
"neighborhood": "Greenwich Village",
"city": "New York",
"region": "NY",
"location_code": "ny",
"postal_code": "10012",
"country": "United States",
"latitude": 40.7279891,
"longitude": -74.0002311,
"phone_number": "+12122543000",
"website": "http://carbonenewyork.com/",
"menu_url": "https://carbonenewyork.com/?menu=dinner",
"min_party_size": 1,
"max_party_size": 14,
"currency_symbol": "$",
"average_cost_per_person": "$150",
"description": "Carbone is an Italian restaurant in the Greenwich Village neighborhood of New York."
}
}curl "https://api.crawlora.net/api/v1/resy/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"