Endpoint Playground
Test Crawlora's OpenTable 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/opentable/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_id | string | Yes | OpenTable restaurant id | |
| date_time | string | No | Reservation date/time, RFC3339-minute local format; defaults to now | |
| party_size | integer | No | Party size, default 2 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "131459",
"name": "El Gaucho Argentinian Steakhouse - Hai Ba Trung",
"line1": "74/1-74/1A Hai Ba Trung",
"city": "Ho Chi Minh city",
"country": "Vietnam",
"dining_style": "Casual Dining",
"cuisines": [
{
"id": "029cd931-4a83-4572-b87a-2b0ce7abcb1e",
"name": "Steakhouse",
"primary": true
}
],
"price_band": {
"band": "3",
"label": "$31 to $50"
},
"reviews": {
"count": 13,
"overall_rating": 5,
"review_count": 17
},
"availability_date_time": "2026-08-04T19:00",
"timeslots": [
{
"date_time": "2026-08-04T19:00",
"available": true,
"type": "Standard",
"points": 100
}
]
}
}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 (location, cuisines, hours, price band, review summary) plus real-time bookable timeslots for the given date/time and party size. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"id": "131459",
"name": "El Gaucho Argentinian Steakhouse - Hai Ba Trung",
"line1": "74/1-74/1A Hai Ba Trung",
"city": "Ho Chi Minh city",
"country": "Vietnam",
"dining_style": "Casual Dining",
"cuisines": [
{
"id": "029cd931-4a83-4572-b87a-2b0ce7abcb1e",
"name": "Steakhouse",
"primary": true
}
],
"price_band": {
"band": "3",
"label": "$31 to $50"
},
"reviews": {
"count": 13,
"overall_rating": 5,
"review_count": 17
},
"availability_date_time": "2026-08-04T19:00",
"timeslots": [
{
"date_time": "2026-08-04T19:00",
"available": true,
"type": "Standard",
"points": 100
}
]
}
}curl "https://api.crawlora.net/api/v1/opentable/restaurant?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"