API reference
Booking.com Attraction API
One attraction's page: description, price, rating and reviews, cancellation, operator, what is included and not, languages, photos, meeting and departure addresses, offers and the latest reviews.
Endpoint
/v1/booking/attractionlive · proven3 creditsParameters
Query parameters
| Name | Required | Description | Example |
|---|---|---|---|
slug | yes | The attraction's slug from booking/search-attractions (or pass url, its page) | pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium |
url | no | The attraction's page URL instead of a slug | |
currency | no | Three-letter currency code | GBP |
language | no | Language code for the site's text | |
dry_run | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. | 1 |
Examples
Make the request
curl "https://www.monocrawl.com/v1/booking/attraction?slug=pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium" \ -H "x-api-key: mn_your_key_here"
TypeScript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
"https://www.monocrawl.com/v1/booking/attraction?slug=pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium",
{ headers: { "x-api-key": key } },
);
const body = await res.json();
if (!body.success) {
// one error shape for every endpoint — see /docs/errors
throw new Error(`${body.error.type}: ${body.error.message}`);
}
console.log(body.data, "credits left:", body.credits_remaining);Python
import os
import requests
res = requests.get(
"https://www.monocrawl.com/v1/booking/attraction?slug=pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium",
headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
timeout=60,
)
body = res.json()
if not body["success"]:
# one error shape for every endpoint — see /docs/errors
raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")
print(body["data"], "credits left:", body["credits_remaining"])Response
Response fields and example
This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.
{
"success": true,
"platform": "booking",
"endpoint": "/v1/booking/attraction",
"data": {
"_warnings": [],
"accessibility": [],
"additional_info": "example",
"addresses": {
"attraction": [
{
"address": "example",
"city": "example",
"country": "example",
"latitude": 0,
"longitude": 0,
"postcode": "example",
"type": "example"
}
]
},
"audio_languages": [
"example"
],
"bookable": false,
"city": "example",
"country_code": "example",
"description": "example",
"destination_id": "example",
"free_cancellation": false,
"guide_languages": [],
"id": "example",
"image_url": "https://example.com/example",
"labels": [],
"name": "example",
"not_included": [],
"offers": [
{
"availability_type": "example",
"id": "example"
}
],
"operated_by": "example",
"photos": [
"example"
],
"platform": "example",
"positive_share": "example",
"price": {
"amount": 0,
"currency": "example"
},
"rating": 0,
"ratings_count": 0,
"restrictions": [],
"reviews": [
{
"author": "example",
"date": "2026-09-01T12:00:00Z",
"id": "example",
"language": "example",
"rating": 0,
"text": "example"
}
],
"reviews_count": 0,
"reviews_total": 0,
"selling_points": [
"example"
],
"short_description": "example",
"slug": "example",
"type": "example",
"url": "https://example.com/example",
"whats_included": [
"example"
]
},
"credits_used": 3,
"credits_remaining": 99,
"request_id": "req_…",
"cached": false
}The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.
Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.
Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.
| Field inside data | Type | Meaning |
|---|---|---|
_warnings | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
accessibility | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
additional_info | string | null | Optional additional info supplied by this operation. Null means unknown. |
addresses | object | null | Optional addresses supplied by this operation. Null means unknown. |
addresses.attraction | array | null | Optional attraction supplied by this operation. Null means unknown. |
addresses.attraction[].address | string | null | Optional address supplied by this operation. Null means unknown. |
addresses.attraction[].city | string | null | Optional city supplied by this operation. Null means unknown. |
addresses.attraction[].country | string | null | Optional country supplied by this operation. Null means unknown. |
addresses.attraction[].latitude | number | null | Optional latitude supplied by this operation. Null means unknown. |
addresses.attraction[].longitude | number | null | Optional longitude supplied by this operation. Null means unknown. |
addresses.attraction[].postcode | string | null | Optional postcode supplied by this operation. Null means unknown. |
addresses.attraction[].type | string | null | Optional type supplied by this operation. Null means unknown. |
audio_languages | array | null | Optional audio languages supplied by this operation. Null means unknown. |
bookable | boolean | null | Optional bookable supplied by this operation. Null means unknown. |
city | string | null | Optional city supplied by this operation. Null means unknown. |
country_code | string | null | Optional country code supplied by this operation. Null means unknown. |
description | string | null | Source description; null or absent means not supplied. |
destination_id | string | null | Optional destination id supplied by this operation. Null means unknown. |
free_cancellation | boolean | null | Optional free cancellation supplied by this operation. Null means unknown. |
guide_languages | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
id | string | null | Source identifier. Preserve the supplied type and exact value. |
image_url | string | null | Optional image url supplied by this operation. Null means unknown. |
labels | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
name | string | null | Optional name supplied by this operation. Null means unknown. |
not_included | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
offers | array | null | Optional offers supplied by this operation. Null means unknown. |
offers[].availability_type | string | null | Optional availability type supplied by this operation. Null means unknown. |
offers[].id | string | null | Source identifier. Preserve the supplied type and exact value. |
operated_by | string | null | Optional operated by supplied by this operation. Null means unknown. |
photos | array | null | Optional photos supplied by this operation. Null means unknown. |
platform | string | null | Optional platform supplied by this operation. Null means unknown. |
positive_share | string | null | Optional positive share supplied by this operation. Null means unknown. |
price | object | null | Source price. Currency, taxes and availability depend on the listing. |
price.amount | number | null | Optional amount supplied by this operation. Null means unknown. |
price.currency | string | null | Optional currency supplied by this operation. Null means unknown. |
rating | number | null | Source rating; read its accompanying scale and vote count. |
ratings_count | number | null | Optional ratings count supplied by this operation. Null means unknown. |
restrictions | array | null | Source array was empty in the reviewed captures; item fields remain unspecified. |
reviews | array | null | Optional reviews supplied by this operation. Null means unknown. |
reviews[].author | string | null | Public author information supplied with this record. |
reviews[].date | string | null | Optional date supplied by this operation. Null means unknown. |
reviews[].id | string | null | Source identifier. Preserve the supplied type and exact value. |
reviews[].language | string | null | Optional language supplied by this operation. Null means unknown. |
reviews[].rating | number | null | Source rating; read its accompanying scale and vote count. |
reviews[].text | string | null | Source text when supplied. |
reviews_count | number | null | Optional reviews count supplied by this operation. Null means unknown. |
reviews_total | number | null | Optional reviews total supplied by this operation. Null means unknown. |
selling_points | array | null | Optional selling points supplied by this operation. Null means unknown. |
short_description | string | null | Optional short description supplied by this operation. Null means unknown. |
slug | string | null | Optional slug supplied by this operation. Null means unknown. |
type | string | null | Optional type supplied by this operation. Null means unknown. |
url | string | null | Original source URL when supplied. |
whats_included | array | null | Optional whats included supplied by this operation. Null means unknown. |
Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.
The example is invented and illustrates types only; zero and empty values are not claims about a real result.
Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference