Skip to main content
POST
/
api
/
airbnb
/
hosts
/airbnb/hosts
curl --request POST \
  --url https://api.anysite.io/api/airbnb/hosts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "host": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@airbnb_host_profile",
    "url": "<string>",
    "name": "<string>",
    "image": "<string>",
    "is_superhost": true,
    "is_verified": true,
    "is_home_host": true,
    "rating": 123,
    "review_count": 123,
    "location": "<string>",
    "about": "<string>",
    "years_hosting": 123,
    "months_hosting": 123,
    "verified_since": "<string>",
    "past_trips_count": 123,
    "identity_verifications": [],
    "interests": [],
    "listing_count": 123,
    "listings": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
host
string
required

Airbnb host (user) id or a host profile URL containing it

Minimum string length: 1
Examples:

"488373990"

"https://www.airbnb.com/users/show/488373990"

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_host_profile
url
string | null
name
string | null
image
string | null
is_superhost
boolean | null
is_verified
boolean | null
is_home_host
boolean | null
rating
number | null
review_count
integer | null
location
string | null
about
string | null
years_hosting
integer | null
months_hosting
integer | null
verified_since
string | null
past_trips_count
integer | null
identity_verifications
string[]
interests
string[]
listing_count
integer | null
listings
AirbnbHostListing · object[]