> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dev.gojinko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# jinko trip-status

> Fetch the full lifecycle state of a trip — items, travelers, quote, fulfillment, and any booking references

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.

## Usage

```bash theme={null}
jinko trip-status [options]
```

## Options

| Flag             | Required | Description | Default |
| ---------------- | -------- | ----------- | ------- |
| `--trip-id <id>` | Yes      | trip ID     |         |

## Examples

```bash theme={null}
# Full trip state: items, travelers, quote, fulfillment, bookings
jinko trip-status --trip-id 42

# Poll until fulfillment is terminal
while true; do
  status=$(jinko trip-status --trip-id 42 --format json | jq -r '.fulfillment.status')
  echo "Status: $status"
  [[ "$status" == "completed" || "$status" == "failed" ]] && break
  sleep 5
done
```
