Skip to main content
POST
/
api
/
v1
/
bookings
/
lookup
Look up a booking by reference + last name (guest access)
curl --request POST \
  --url https://mcp-bff.gojinko.com/api/v1/bookings/lookup \
  --header 'Content-Type: application/json' \
  --data '
{
  "booking_ref": "<string>",
  "last_name": "<string>"
}
'
{
  "booking": {
    "booking_reference": "<string>",
    "created_at": "<string>",
    "customer_contact": {
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "phone_number": "<string>"
    },
    "items": [
      {
        "confirmation": {
          "confirmation_number": "<string>",
          "product_summary": "<string>",
          "total_paid": {
            "amount": 123,
            "currency": "<string>",
            "decimal_places": 123
          }
        },
        "domain": "<string>",
        "status": "pending"
      }
    ],
    "status": "pending",
    "travelers": [
      {
        "first_name": "<string>",
        "last_name": "<string>",
        "passenger_type": "<string>"
      }
    ]
  }
}

Body

application/json

Booking lookup request

booking_ref
string
last_name
string

Response

OK

booking
object