Skip to main content
POST
/
api
/
airbnb
/
listings
/
search
/airbnb/listings/search
curl --request POST \
  --url https://api.anysite.io/api/airbnb/listings/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "place": "<string>",
  "count": 2,
  "timeout": 300,
  "check_in": "2026-08-09",
  "check_out": "2026-08-14",
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "min_price": 1,
  "max_price": 1
}
'
[
  {
    "id": "<string>",
    "@type": "@airbnb_search_listing",
    "url": "<string>",
    "title": "<string>",
    "category": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rating": 123,
    "review_count": 123,
    "is_guest_favorite": true,
    "badges": [],
    "price": "<string>",
    "original_price": "<string>",
    "price_qualifier": "<string>",
    "bedroom_count": 123,
    "bed_count": 123,
    "bathroom_count": 123,
    "bathroom_label": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
place
string
required

Location to search (city, region, address or landmark)

Minimum string length: 1
Example:

"Paris, France"

count
integer
required

Max number of listings to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
check_in
string | null

Check-in date (YYYY-MM-DD)

Example:

"2026-08-09"

check_out
string | null

Check-out date (YYYY-MM-DD)

Example:

"2026-08-14"

adults
integer
default:1

Number of adult guests

Required range: 1 <= x <= 16
children
integer
default:0

Number of children

Required range: 0 <= x <= 15
infants
integer
default:0

Number of infants

Required range: 0 <= x <= 5
pets
integer
default:0

Number of pets

Required range: 0 <= x <= 5
min_price
integer | null

Minimum nightly price filter

Required range: x >= 0
max_price
integer | null

Maximum nightly price filter

Required range: x >= 0

Response

Successful Response

id
string
required
@type
string
default:@airbnb_search_listing
url
string | null
title
string | null
category
string | null
latitude
number | null
longitude
number | null
rating
number | null
review_count
integer | null
is_guest_favorite
boolean | null
badges
string[]
price
string | null
original_price
string | null
price_qualifier
string | null
bedroom_count
integer | null
bed_count
integer | null
bathroom_count
number | null
bathroom_label
string | null
images
string[]