Airbnb · Schema
Reservation
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the reservation. |
| confirmation_code | string | The human-readable confirmation code for the reservation. |
| status | string | The current status of the reservation. |
| listing_id | string | The identifier of the listing that was booked. |
| guest | object | |
| check_in | string | The guest check-in date. |
| check_out | string | The guest check-out date. |
| nights | integer | The total number of nights in the reservation. |
| guests_count | integer | The number of guests included in the reservation. |
| total_price | number | The total price of the reservation in the listing currency. |
| currency | string | The ISO 4217 currency code for the reservation pricing. |
| host_payout | number | The amount to be paid out to the host after fees. |
| created_at | string | The timestamp when the reservation was created. |
| updated_at | string | The timestamp when the reservation was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/airbnb/refs/heads/main/json-schema/airbnb-reservation-schema.json",
"title": "Reservation",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the reservation."
},
"confirmation_code": {
"type": "string",
"description": "The human-readable confirmation code for the reservation."
},
"status": {
"type": "string",
"description": "The current status of the reservation.",
"enum": [
"pending",
"accepted",
"denied",
"cancelled",
"checked_in",
"checked_out"
]
},
"listing_id": {
"type": "string",
"description": "The identifier of the listing that was booked."
},
"guest": {
"$ref": "#/components/schemas/Guest"
},
"check_in": {
"type": "string",
"format": "date",
"description": "The guest check-in date."
},
"check_out": {
"type": "string",
"format": "date",
"description": "The guest check-out date."
},
"nights": {
"type": "integer",
"description": "The total number of nights in the reservation.",
"minimum": 1
},
"guests_count": {
"type": "integer",
"description": "The number of guests included in the reservation.",
"minimum": 1
},
"total_price": {
"type": "number",
"format": "double",
"description": "The total price of the reservation in the listing currency."
},
"currency": {
"type": "string",
"description": "The ISO 4217 currency code for the reservation pricing.",
"pattern": "^[A-Z]{3}$"
},
"host_payout": {
"type": "number",
"format": "double",
"description": "The amount to be paid out to the host after fees."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the reservation was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the reservation was last updated."
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/airbnb-reservation"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.