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

GET/v1/booking/attractionlive · proven3 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
slugyesThe attraction's slug from booking/search-attractions (or pass url, its page)pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium
urlnoThe attraction's page URL instead of a slug
currencynoThree-letter currency codeGBP
languagenoLanguage code for the site's text
dry_runnoRead 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
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
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
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.

200 · application/json
{
  "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 dataTypeMeaning
_warningsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
accessibilityarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
additional_infostring | nullOptional additional info supplied by this operation. Null means unknown.
addressesobject | nullOptional addresses supplied by this operation. Null means unknown.
addresses.attractionarray | nullOptional attraction supplied by this operation. Null means unknown.
addresses.attraction[].addressstring | nullOptional address supplied by this operation. Null means unknown.
addresses.attraction[].citystring | nullOptional city supplied by this operation. Null means unknown.
addresses.attraction[].countrystring | nullOptional country supplied by this operation. Null means unknown.
addresses.attraction[].latitudenumber | nullOptional latitude supplied by this operation. Null means unknown.
addresses.attraction[].longitudenumber | nullOptional longitude supplied by this operation. Null means unknown.
addresses.attraction[].postcodestring | nullOptional postcode supplied by this operation. Null means unknown.
addresses.attraction[].typestring | nullOptional type supplied by this operation. Null means unknown.
audio_languagesarray | nullOptional audio languages supplied by this operation. Null means unknown.
bookableboolean | nullOptional bookable supplied by this operation. Null means unknown.
citystring | nullOptional city supplied by this operation. Null means unknown.
country_codestring | nullOptional country code supplied by this operation. Null means unknown.
descriptionstring | nullSource description; null or absent means not supplied.
destination_idstring | nullOptional destination id supplied by this operation. Null means unknown.
free_cancellationboolean | nullOptional free cancellation supplied by this operation. Null means unknown.
guide_languagesarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
idstring | nullSource identifier. Preserve the supplied type and exact value.
image_urlstring | nullOptional image url supplied by this operation. Null means unknown.
labelsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
namestring | nullOptional name supplied by this operation. Null means unknown.
not_includedarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
offersarray | nullOptional offers supplied by this operation. Null means unknown.
offers[].availability_typestring | nullOptional availability type supplied by this operation. Null means unknown.
offers[].idstring | nullSource identifier. Preserve the supplied type and exact value.
operated_bystring | nullOptional operated by supplied by this operation. Null means unknown.
photosarray | nullOptional photos supplied by this operation. Null means unknown.
platformstring | nullOptional platform supplied by this operation. Null means unknown.
positive_sharestring | nullOptional positive share supplied by this operation. Null means unknown.
priceobject | nullSource price. Currency, taxes and availability depend on the listing.
price.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
price.currencystring | nullOptional currency supplied by this operation. Null means unknown.
ratingnumber | nullSource rating; read its accompanying scale and vote count.
ratings_countnumber | nullOptional ratings count supplied by this operation. Null means unknown.
restrictionsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
reviewsarray | nullOptional reviews supplied by this operation. Null means unknown.
reviews[].authorstring | nullPublic author information supplied with this record.
reviews[].datestring | nullOptional date supplied by this operation. Null means unknown.
reviews[].idstring | nullSource identifier. Preserve the supplied type and exact value.
reviews[].languagestring | nullOptional language supplied by this operation. Null means unknown.
reviews[].ratingnumber | nullSource rating; read its accompanying scale and vote count.
reviews[].textstring | nullSource text when supplied.
reviews_countnumber | nullOptional reviews count supplied by this operation. Null means unknown.
reviews_totalnumber | nullOptional reviews total supplied by this operation. Null means unknown.
selling_pointsarray | nullOptional selling points supplied by this operation. Null means unknown.
short_descriptionstring | nullOptional short description supplied by this operation. Null means unknown.
slugstring | nullOptional slug supplied by this operation. Null means unknown.
typestring | nullOptional type supplied by this operation. Null means unknown.
urlstring | nullOriginal source URL when supplied.
whats_includedarray | nullOptional 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

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.