Search Experiences
curl --request GET \
--url https://scrapebadger.com/v1/airbnb/experiencesimport requests
url = "https://scrapebadger.com/v1/airbnb/experiences"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://scrapebadger.com/v1/airbnb/experiences', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/airbnb/experiences",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/airbnb/experiences"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/airbnb/experiences")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/airbnb/experiences")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"location": "<string>",
"count": 123,
"next_page_cursor": "<string>",
"experiences": [
{
"experience_id": "<string>",
"title": "<string>",
"duration": "<string>",
"rating": 123,
"review_count": 123,
"rating_label": "<string>",
"price": "<string>",
"latitude": 123,
"longitude": 123,
"images": [
"<string>"
],
"experience_url": "<string>"
}
]
}Endpoints
Search Experiences
Search Airbnb Experiences by location — title, duration, rating, price, GPS and photos, with cursor pagination.
GET
/
v1
/
airbnb
/
experiences
Search Experiences
curl --request GET \
--url https://scrapebadger.com/v1/airbnb/experiencesimport requests
url = "https://scrapebadger.com/v1/airbnb/experiences"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://scrapebadger.com/v1/airbnb/experiences', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/airbnb/experiences",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/airbnb/experiences"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/airbnb/experiences")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/airbnb/experiences")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"location": "<string>",
"count": 123,
"next_page_cursor": "<string>",
"experiences": [
{
"experience_id": "<string>",
"title": "<string>",
"duration": "<string>",
"rating": 123,
"review_count": 123,
"rating_label": "<string>",
"price": "<string>",
"latitude": 123,
"longitude": 123,
"images": [
"<string>"
],
"experience_url": "<string>"
}
]
}Search Airbnb Experiences in a place.
location is required and geocoded
server-side. Page through results by feeding next_page_cursor back as
cursor, then fetch full detail with
/experiences/{experience_id}.
Query Parameters
string
required
Free-text place, geocoded server-side — e.g.
Rome, Italy, Lisbon.string
Pagination cursor — pass the
next_page_cursor from the previous response.string
default:"USD"
Currency for prices, e.g.
EUR, GBP.string
default:"en"
Locale for text, e.g.
fr, es.Response
string
Echo of the resolved location.
integer
Experiences returned on this page.
string
Cursor for the next page — pass it back as
cursor. null on the last page.Experience[]
Experience cards for this page.
Show Experience
Show Experience
string
Airbnb experience id — feed to
/experiences/{experience_id}.string
string
e.g.
2.5 hours.number
Average rating, e.g.
4.96.integer
Number of reviews.
string
Formatted rating, e.g.
4.96 (1,204).string
Formatted price, e.g.
€45 / person.number
number
string[]
Photo URLs.
string
Canonical experience URL on airbnb.com.
Example
const res = await fetch(
"https://scrapebadger.com/v1/airbnb/experiences?" +
new URLSearchParams({ location: "Rome, Italy", currency: "EUR" }),
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const data = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/airbnb/experiences",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"location": "Rome, Italy", "currency": "EUR"},
)
data = res.json()
curl "https://scrapebadger.com/v1/airbnb/experiences?location=Rome%2C%20Italy¤cy=EUR" \
-H "X-API-Key: YOUR_API_KEY"
Response
{
"location": "Rome, Italy",
"count": 20,
"next_page_cursor": "eyJpdGVtc19vZmZzZXQiOjIwLCJ2ZXJzaW9uIjoxfQ==",
"experiences": [
{
"experience_id": "1847362",
"title": "Trastevere street food walk with a Roman chef",
"duration": "2.5 hours",
"rating": 4.96,
"review_count": 1204,
"rating_label": "4.96 (1,204)",
"price": "€45 / person",
"latitude": 41.8894,
"longitude": 12.4692,
"images": [
"https://a0.muscache.com/im/pictures/experience/1847362-supplice.jpeg",
"https://a0.muscache.com/im/pictures/experience/1847362-market.jpeg"
],
"experience_url": "https://www.airbnb.com/experiences/1847362"
},
{
"experience_id": "2938471",
"title": "Sunrise photography tour of the Roman Forum",
"duration": "3 hours",
"rating": 4.89,
"review_count": 372,
"rating_label": "4.89 (372)",
"price": "€68 / person",
"latitude": 41.8925,
"longitude": 12.4853,
"images": [
"https://a0.muscache.com/im/pictures/experience/2938471-forum.jpeg"
],
"experience_url": "https://www.airbnb.com/experiences/2938471"
}
]
}
Each experiences-search request costs 5 credits. Failed requests are not charged.
⌘I

