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>'
import requests

url = "https://api.example.com/v1/trip/{trip_id}"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.example.com/v1/trip/{trip_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.example.com/v1/trip/{trip_id}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "X-API-Key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.example.com/v1/trip/{trip_id}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-API-Key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.example.com/v1/trip/{trip_id}")
  .header("X-API-Key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/trip/{trip_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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:56Z"
  },
  "fulfillment": {
    "fulfillment_cart_id": 123,
    "status": "<string>",
    "phase": "<string>"
  },
  "bookings": [
    null
  ],
  "created_at": "2026-06-01T12:30:00Z",
  "updated_at": "2026-06-01T12:34:56Z"
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "Malformed JSON in request body.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "AUTH_REQUIRED",
    "message": "Invalid or expired API key.",
    "doc_url": "https://docs.gojinko.com/api-reference/authentication"
  }
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "origins: origins is required; trip_type: trip_type is required",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit or quota exceeded.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "UPSTREAM_ERROR",
    "message": "Upstream travel provider returned an error. Please retry.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
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:56Z"
}
fulfillment
object
bookings
null[]
created_at
string
Example:

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

updated_at
string
Example:

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