# GoCreative Booking.com Hotel Search API

> GoCreative Booking.com Hotel Search API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Searches real Booking.com hotel listings for a destination, returning nightly prices, ratings, property types, and addresses in real-time without login.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/travel/booking/search/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-booking-com-hotel-search-api-67c7996d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FPTnPVsUFvgOx-rc5FyMr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gocreative-booking-com-hotel-search-api-67c7996d
```

Example prompt: Search Booking.com for hotels in Lisbon and show me real listings with nightly prices, ratings, and addresses so I can pick one.

## When to prefer this

Choose this endpoint when you need live Booking.com hotel listings with pricing and ratings for a destination without requiring user authentication or a Booking.com account. Ideal for AI agents automating travel research, building itineraries, or comparing accommodation options programmatically. Prefer this over scraping Booking.com directly (TOS violations, fragility) or general travel search APIs when you specifically want Booking.com inventory and pricing data.

## Known failure modes

- Invalid or unrecognized destination string returns empty results or an error
- Destination with no Booking.com coverage returns zero listings
- Malformed query parameter causes a 400 Bad Request
- Payment failure (insufficient USDC balance) blocks the request via x402 protocol
- Rate limiting or downstream Booking.com availability issues may return partial results or a 503

## How this service works

Booking.com Hotel Search API — real active Booking.com listings for a destination: nightly price, rating, property type, address. Real-time, no login. SEO: Booking.com API, hotel price API, hotel search API, accommodation data.

## Output

Returns a list of real active Booking.com hotel listings for the requested destination, including hotel name, nightly price, guest rating, property type (hotel/apartment/etc.), and address. Data is fetched in real-time with no authentication required from the caller.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-booking-com-hotel-search-api-67c7996d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
