Skip to main content
GET
/
v1
/
trip
/
{trip_id}
Fetch the full lifecycle state of a trip — items, travelers, quote, fulfillment, and any booking references
curl --request GET \
  --url https://api.example.com/v1/trip/{trip_id} \
  --header 'X-API-Key: <api-key>'
{
  "trip_id": "trip_1048576",
  "status": "draft",
  "travelers": [
    null
  ],
  "contact": {
    "email": "<string>",
    "phone": "<string>"
  },
  "items": [
    null
  ],
  "total_amount": {
    "amount": 318.4,
    "value": 123,
    "currency": "USD",
    "decimal_places": 2
  },
  "quote": {
    "quoted_cart_id": 2097152,
    "status": "quoted",
    "expires_at": "2026-06-01T13:04:56.000Z"
  },
  "fulfillment": {
    "fulfillment_cart_id": 123,
    "status": "<string>",
    "phase": "<string>"
  },
  "bookings": [
    null
  ],
  "created_at": "2026-06-01T12:30:00.000Z",
  "updated_at": "2026-06-01T12:34:56.000Z"
}
Inspect the current state of a trip without modifying it. Reach for it when you need to confirm what items are on the trip, verify the travelers attached to a booking, or check whether a checkout has finalized after the user paid. The response covers items, traveler details, quote status, and any booking references that have been issued.

Authorizations

X-API-Key
string
header
required

Path Parameters

trip_id
string
required

Response

The trip

trip_id
string
required
Example:

"trip_1048576"

status
string
Example:

"draft"

travelers
null[]
contact
object
items
null[]
total_amount
object
quote
object
Example:
{
"quoted_cart_id": 2097152,
"status": "quoted",
"expires_at": "2026-06-01T13:04:56.000Z"
}
fulfillment
object
bookings
null[]
created_at
string
Example:

"2026-06-01T12:30:00.000Z"

updated_at
string
Example:

"2026-06-01T12:34:56.000Z"