Get a reservation
GET /reservations/{id}
GET
/reservations/{id}Path parameters
Responses
| Status | Description |
|---|---|
200 |
The reservation. |
404 |
No such reservation. |
Example response
{
"id": "res_8f21",
"status": "confirmed",
"guestName": "string",
"checkIn": "2026-01-01",
"checkOut": "2026-01-01",
"total": 0
}Try it
curl -X GET "https://api.example.com/v1/reservations/{id}" \
-H "Authorization: Bearer $TOKEN"