Cloudbeds · Schema
Cloudbeds Reservation
JSON Schema for a Cloudbeds reservation as returned by the Cloudbeds REST API v1.3 reservations endpoints.
HospitalityHotelsPMSProperty ManagementChannel ManagerBooking EnginePayments
Properties
| Name | Type | Description |
|---|---|---|
| reservationID | string | Cloudbeds-assigned identifier for the reservation. |
| propertyID | string | Identifier for the Cloudbeds property the reservation belongs to. |
| guestID | string | Primary guest identifier associated with the reservation. |
| guestName | string | Primary guest full name. |
| guestEmail | string | Primary guest email. |
| guestPhone | string | Primary guest phone number. |
| status | string | Reservation status (e.g. confirmed, in_house, checked_out, cancelled, no_show). |
| source | string | Source of the reservation (e.g. direct, booking_com, expedia, airbnb). |
| startDate | string | Check-in date (ISO 8601). |
| endDate | string | Check-out date (ISO 8601). |
| rooms | array | Rooms reserved for the stay. |
| subtotal | number | Reservation subtotal before taxes and fees. |
| taxes | number | Total taxes applied. |
| total | number | Total reservation amount. |
| currency | string | ISO 4217 currency code for the reservation. |
| balance | number | Outstanding balance owed on the reservation. |
| dateCreated | string | |
| dateModified | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/cloudbeds/cloudbeds-reservation-schema.json",
"title": "Cloudbeds Reservation",
"description": "JSON Schema for a Cloudbeds reservation as returned by the Cloudbeds REST API v1.3 reservations endpoints.",
"type": "object",
"required": ["reservationID", "propertyID", "startDate", "endDate", "status"],
"properties": {
"reservationID": {
"type": "string",
"description": "Cloudbeds-assigned identifier for the reservation."
},
"propertyID": {
"type": "string",
"description": "Identifier for the Cloudbeds property the reservation belongs to."
},
"guestID": {
"type": "string",
"description": "Primary guest identifier associated with the reservation."
},
"guestName": {
"type": "string",
"description": "Primary guest full name."
},
"guestEmail": {
"type": "string",
"format": "email",
"description": "Primary guest email."
},
"guestPhone": {
"type": "string",
"description": "Primary guest phone number."
},
"status": {
"type": "string",
"description": "Reservation status (e.g. confirmed, in_house, checked_out, cancelled, no_show).",
"enum": [
"confirmed",
"not_confirmed",
"in_house",
"checked_out",
"cancelled",
"no_show"
]
},
"source": {
"type": "string",
"description": "Source of the reservation (e.g. direct, booking_com, expedia, airbnb)."
},
"startDate": {
"type": "string",
"format": "date",
"description": "Check-in date (ISO 8601)."
},
"endDate": {
"type": "string",
"format": "date",
"description": "Check-out date (ISO 8601)."
},
"rooms": {
"type": "array",
"description": "Rooms reserved for the stay.",
"items": {
"type": "object",
"properties": {
"roomID": { "type": "string" },
"roomTypeID": { "type": "string" },
"adults": { "type": "integer", "minimum": 0 },
"children": { "type": "integer", "minimum": 0 },
"ratePlanID": { "type": "string" }
}
}
},
"subtotal": {
"type": "number",
"description": "Reservation subtotal before taxes and fees."
},
"taxes": {
"type": "number",
"description": "Total taxes applied."
},
"total": {
"type": "number",
"description": "Total reservation amount."
},
"currency": {
"type": "string",
"description": "ISO 4217 currency code for the reservation."
},
"balance": {
"type": "number",
"description": "Outstanding balance owed on the reservation."
},
"dateCreated": {
"type": "string",
"format": "date-time"
},
"dateModified": {
"type": "string",
"format": "date-time"
}
}
}
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/cloudbeds-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.