AnyAPI booking.search (Booking.com Search)
https://api.getanyapi.com/v1/run/booking.searchOverview
AnyAPI booking.search (Booking.com Search)
Protocol
x402
Price
—
Payment Asset
USD Coin
Payment Network
eip155:8453
Category
tools/search
Provider
getanyapi
Source
bazaar
Indexed
2026-06-29 01:09:47
Health
Status
unknown
Latency (p50)
—
Uptime (30d)
—
Reliability Score
—
Last Checked
Never
Last Healthy
Never
Consecutive Failures
0
x402 Payment Validation
Payment Requirements
—
Asset Verified
—
Facilitator
—
Input Schema
{
"bodyFields": {
"checkIn": {
"description": "Check-in date in YYYY-MM-DD format, UTC (e.g. 2026-07-01).",
"type": "string"
},
"checkOut": {
"description": "Check-out date in YYYY-MM-DD format, UTC (e.g. 2026-07-05).",
"type": "string"
},
"currency": {
"default": "USD",
"description": "Currency code for prices (e.g. EUR).",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (1–20, default 20). You are billed per result returned, so a lower limit costs less.",
"maximum": 20,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Destination to search for stays in (e.g. Paris).",
"type": "string"
}
},
"bodyType": "json",
"discoverable": true,
"method": "POST",
"type": "http"
}
Output Schema
{
"properties": {
"costUsd": {
"description": "Amount charged in USD for this call.",
"type": "number"
},
"items": {
"description": "Number of result rows returned. For per-result SKUs the per-item cost is charged against this count; for input-priced SKUs the charge is per submitted input, independent of this count.",
"type": "integer"
},
"output": {
"additionalProperties": false,
"properties": {
"data": {
"oneOf": [
{
"type": "null"
},
{
"additionalProperties": false,
"properties": {
"items": {
"description": "Hotel result records: name, address, price, review score, star rating, and room details.",
"items": {
"properties": {
"price": {
"type": "number"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}
]
},
"found": {
"type": "boolean"
}
},
"required": [
"found",
"data"
],
"title": "Booking.com search output",
"type": "object"
},
"provider": {
"description": "Always \"AnyAPI\".",
"type": "string"
}
},
"required": [
"output",
"provider",
"costUsd"
],
"type": "object"
}