Endpoint Playground
Test Crawlora's OpenTable 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/opentable/search?term=<term>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Free-text search term | |
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| date_time | string | No | Reservation date/time, RFC3339-minute local format; defaults to now | |
| party_size | integer | No | Party size, default 2 | |
| size | integer | No | Max results, default 10 |
{
"code": 200,
"msg": "OK",
"data": {
"term": "dinner",
"results": [
{
"id": "131459",
"name": "El Gaucho Argentinian Steakhouse - Hai Ba Trung",
"city": "Ho Chi Minh city",
"country": "Vietnam",
"latitude": 10.7780363,
"longitude": 106.7035966,
"availability_date_time": "2026-08-04T19:30"
}
]
}
}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 (cuisine, name, neighborhood) near a latitude/longitude, for a given date/time and party size, including inline live availability per result. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"term": "dinner",
"results": [
{
"id": "131459",
"name": "El Gaucho Argentinian Steakhouse - Hai Ba Trung",
"city": "Ho Chi Minh city",
"country": "Vietnam",
"latitude": 10.7780363,
"longitude": 106.7035966,
"availability_date_time": "2026-08-04T19:30"
}
]
}
}curl "https://api.crawlora.net/api/v1/opentable/search?term=<term>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"