Skip to main content
POST
/
v1
/
trips
/
get-short-trips-with-ids
{
  "trip_ids": [5,1,20]
}
[
  {
      "id": 11,
      "title": "5 Day Tanzanian Safari, Savannah Tours",
      "overview": "A comprehensive 5-day safari experience starting from Arusha to Tarangire National Park with game drives and accommodations at Burunge Tented Lodge, among other destinations.",
      "countries": ["TZ"],
      "pricing": {
          "price": 1200,
          "currency": "USD"
      },
      "properties": [
          {
              "id": 5, 
              "name": "Burunge Tented Lodge - Tarangire"
          }, 
          {
              "id": 16, 
              "name": "Marera Valley Lodge"
          }
          // Additional properties
      ]
      "suppliers": [
          {
              "name": "Savannah Tours",
              "logo_url": "https://example.com/logo_url.jpg"
          }
          // Additional suppliers
      ],
      "min_pax": 2, 
      "image_urls": [
          "https://cloudsafaris.com/path/to/image1.jpg",
          "https://cloudsafaris.com/path/to/image2.jpg"
      ],
      "destinations": [
          {
              "id": 7, 
              "name": "Tarangire National Park"
          }, 
          {
              "id": 12, 
              "name": "Lake Manyara National Park"
          }
          // Additional destinations
      ]
      "days": 5,
      "url": "/5-day-tanzanian-safari-savannah-tours"
  }
  // Additional trips
]

Header Parameters

CloudSafaris-API-Version
string
default:"v1"
Currently the only acceptable value is v1.

Request Body Parameters

trip_ids
number[]
required
The unique identifiers for the trips that you expect to receive. Maximum of 100 trip ids to enter here.
{
  "trip_ids": [5,1,20]
}

Response Body Parameters

The fields returned are the same as those in the data from the Get All Short Trips Response endpoint, with the exception that it does not return an offset number.
[
  {
      "id": 11,
      "title": "5 Day Tanzanian Safari, Savannah Tours",
      "overview": "A comprehensive 5-day safari experience starting from Arusha to Tarangire National Park with game drives and accommodations at Burunge Tented Lodge, among other destinations.",
      "countries": ["TZ"],
      "pricing": {
          "price": 1200,
          "currency": "USD"
      },
      "properties": [
          {
              "id": 5, 
              "name": "Burunge Tented Lodge - Tarangire"
          }, 
          {
              "id": 16, 
              "name": "Marera Valley Lodge"
          }
          // Additional properties
      ]
      "suppliers": [
          {
              "name": "Savannah Tours",
              "logo_url": "https://example.com/logo_url.jpg"
          }
          // Additional suppliers
      ],
      "min_pax": 2, 
      "image_urls": [
          "https://cloudsafaris.com/path/to/image1.jpg",
          "https://cloudsafaris.com/path/to/image2.jpg"
      ],
      "destinations": [
          {
              "id": 7, 
              "name": "Tarangire National Park"
          }, 
          {
              "id": 12, 
              "name": "Lake Manyara National Park"
          }
          // Additional destinations
      ]
      "days": 5,
      "url": "/5-day-tanzanian-safari-savannah-tours"
  }
  // Additional trips
]
I