Skip to main content
POST
/
api
/
airbnb
/
listings
/airbnb/listings
curl --request POST \
  --url https://api.anysite.io/api/airbnb/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@airbnb_listing",
    "url": "<string>",
    "title": "<string>",
    "property_type": "<string>",
    "room_type": "<string>",
    "location": "<string>",
    "latitude": 123,
    "longitude": 123,
    "person_capacity": 123,
    "bedroom_count": 123,
    "bed_count": 123,
    "bathroom_count": 123,
    "bathroom_label": "<string>",
    "rating": 123,
    "review_count": 123,
    "rating_accuracy": 123,
    "rating_checkin": 123,
    "rating_cleanliness": 123,
    "rating_communication": 123,
    "rating_location": 123,
    "rating_value": 123,
    "is_guest_favorite": true,
    "is_superhost": true,
    "description": "<string>",
    "highlights": [],
    "amenities": [],
    "images": [],
    "cancellation_policy": "<string>",
    "check_in_time": "<string>",
    "check_out_time": "<string>",
    "house_rules": [],
    "host": {
      "@type": "@airbnb_host",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "is_superhost": true,
      "is_verified": true,
      "rating": 123,
      "review_count": 123,
      "years_hosting": 123,
      "about": "<string>",
      "response_rate": "<string>",
      "response_time": "<string>",
      "cohosts": []
    }
  }
]

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"

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_listing
url
string | null
title
string | null
property_type
string | null
room_type
string | null
location
string | null
latitude
number | null
longitude
number | null
person_capacity
integer | null
bedroom_count
integer | null
bed_count
integer | null
bathroom_count
number | null
bathroom_label
string | null
rating
number | null
review_count
integer | null
rating_accuracy
number | null
rating_checkin
number | null
rating_cleanliness
number | null
rating_communication
number | null
rating_location
number | null
rating_value
number | null
is_guest_favorite
boolean | null
is_superhost
boolean | null
description
string | null
highlights
AirbnbHighlight · object[]
amenities
AirbnbAmenity · object[]
images
string[]
cancellation_policy
string | null
check_in_time
string | null
check_out_time
string | null
house_rules
string[]
host
AirbnbHost · object