Skip to main content
POST
/
api
/
airbnb
/
listings
/
reviews
/airbnb/listings/reviews
curl --request POST \
  --url https://api.anysite.io/api/airbnb/listings/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@airbnb_review",
    "text": "<string>",
    "rating": 123,
    "created_at": "<string>",
    "language": "<string>",
    "highlight": "<string>",
    "response": "<string>",
    "author": {
      "@type": "@airbnb_review_author",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "profile_url": "<string>",
      "is_superhost": true
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Airbnb listing (room) id or a listing URL containing it

Minimum string length: 1
Examples:

"1316083847530954363"

"https://www.airbnb.com/rooms/1316083847530954363"

count
integer
required

Number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@airbnb_review
text
string | null
rating
integer | null
created_at
string | null
language
string | null
highlight
string | null
response
string | null
author
AirbnbReviewAuthor · object