Endpoint Playground
Test Crawlora's OpenTable Restaurant Reviews 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/reviews?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_id | string | Yes | OpenTable restaurant id | |
| page | integer | No | Page number, default 1 | |
| size | integer | No | Reviews per page, default 20 |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "131459",
"page": 1,
"reviews": [
{
"id": "OT-131459-908-200058686370",
"reservation_date": "2026-05-29T13:45",
"posted_date": "2026-06-02T07:28",
"author": "kim",
"author_metro": "Brisbane",
"text": "Australian beef, top notch.",
"recommended": true,
"statistics": {
"overall_rating": 5,
"food": 5,
"service": 5,
"ambience": 5,
"value": 4,
"noise": 3
}
}
]
}
}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 page of diner reviews (author, text, per-category ratings) for a restaurant. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "131459",
"page": 1,
"reviews": [
{
"id": "OT-131459-908-200058686370",
"reservation_date": "2026-05-29T13:45",
"posted_date": "2026-06-02T07:28",
"author": "kim",
"author_metro": "Brisbane",
"text": "Australian beef, top notch.",
"recommended": true,
"statistics": {
"overall_rating": 5,
"food": 5,
"service": 5,
"ambience": 5,
"value": 4,
"noise": 3
}
}
]
}
}curl "https://api.crawlora.net/api/v1/opentable/restaurant/reviews?restaurant_id=<restaurant_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"