Public Playground
Preview the endpoint before sending a live request
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.
Playground
Get Airbnb room reviews API Playground
Returns normalized Airbnb public review snippets.
GETapiKey5 credits/requestairbnb.ReviewsResponseAirbnb
Endpoint details
Returns normalized Airbnb public review snippets.
- Method
- GET
- Path
- /airbnb/room/{id}/reviews
- Authentication
- apiKey
- Credit cost
- 5 credits/request
- Platform
- Airbnb
- Parameters
- 3 documented fields
Request parameters
id:pathpage:queryx-api-key:header
Response schema fields
idpagereviewsreviews[].authorreviews[].datereviews[].ratingreviews[].text
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"id": "12345678",
"page": 1,
"reviews": [
{
"author": "Jane",
"text": "Great stay."
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/airbnb/room/<id>/reviews" \
-H "x-api-key: <api-key>"