{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
{
"id": "string",
"offer_type": "text",
"channel": "string",
"ticketing_end_date": "date",
"available_seats": "number",
"passengers": "array[]",
"flights": "list",
"departure_airport_code": "enum",
"direction": "boolean",
"arrival_airport": "json"
}
// Search for hotels using
// a tenant’s sandbox environment API Key
import Boxcribe from '@boxcribe/node';
const Boxcribe = new Boxcribe('sb_70f8b8f308546c83ba386b62f090314b');
const hotels = await boxcribe.api.hotelsOffersSearchPost({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});# Search for hotels using
# a tenant’s sandbox environment API Key
require 'boxcribe'
Boxcribe.key = 'sb_70f8b8f308546c83ba386b62f090314b'
Boxcribe::API.hotels_offers_search_post({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
) # Search for hotels using
# a tenant’s sandbox environment API Key
import boxcribe
from boxcribe import client
boxcribe.api_key = 'sb_70f8b8f308546c83ba386b62f090314b'
client.api.hotels_offers_search_post({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});// Search for hotels using
// a tenant’s sandbox environment API Key
import "github.com/boxcribe/boxcribe-go/api"
api.SetApiKey("sb_70f8b8f308546c83ba386b62f090314b")
api.hotelsOffersSearchPost({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});// Search for hotels using
// a tenant’s sandbox environment API Key
$this->api = new Boxcribe\API('sb_70f8b8f308546c83ba386b62f090314b');
$hotels = $this->api->hotelsOffersSearchPost({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});// Search for hotels using
// a tenant’s sandbox environment API Key
import com.boxcribe.Boxcribe;
Boxcribe boxcribe = new Boxcribe('sb_70f8b8f308546c83ba386b62f090314b');
Hotels hotels = boxcribe.api.hotelsOffersSearchPost({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});// Search for hotels using
// a tenant’s sandbox environment API Key
Boxcribe.SetApiKey('sb_70f8b8f308546c83ba386b62f090314b');
var apiService = new APIService();
var options = new HotelsOffersSearchPostOptions({
location_latitude: 32.7767,
location_longitude: 96.7970,
...
});
var hotels = await apiService.hotelsOffersSearchPost(options);curl --location 'https://api.boxcribe.com/v1/hotels/offers/search' \
--header 'Content-Type: application/json' \
--header 'x-api-key: sb_70f8b8f308546c83ba386b62f090314b' \
--data '{
“location_latitude”: 32.7767,
“location_longitude”: 96.7970,
...
}'Response {
"company_id": "d0da6169-4e17-471d-a1d7-4efaa80163c1",
"tenant_id": "0511fd80-78c4-496b-9eb5-d327ca3c6828",
"category_id": "e622454d-b15c-4c02-9ebd-63a1b2e8c6d7",
"offers": [...],
"page": 1,
"limit": 100,
"total": 350
}






















