Skip to main content
GET
/
bookings
/
{booking_number}
Retrieve a booking
curl --request GET \
  --url https://api.safarapi.com/api/partner/v1/bookings/{booking_number} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.safarapi.com/api/partner/v1/bookings/{booking_number}"

headers = {"Authorization": "Bearer <token>"}

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

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.safarapi.com/api/partner/v1/bookings/{booking_number}', 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.safarapi.com/api/partner/v1/bookings/{booking_number}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>"
  ],
]);

$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.safarapi.com/api/partner/v1/bookings/{booking_number}"

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

	req.Header.Add("Authorization", "Bearer <token>")

	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.safarapi.com/api/partner/v1/bookings/{booking_number}")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.safarapi.com/api/partner/v1/bookings/{booking_number}")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{ "booking_number": "MV-AB7X92", "partner_reference": "YBANK-BOOK-001", "status": "CONFIRMED", "adventure_slug": "marrakech-3-jours-desert-sandbox", "adventure_title": "[DEMO] 3-day Sahara desert circuit from Marrakech", "travel_date": "2026-07-12", "traveler_name": "A. B.", "pricing": { "b2c_price": { "amount": "5250.00", "currency": "MAD" }, "customer_price": { "amount": "6210.00", "currency": "MAD" }, "amount_due_to_safariat": { "amount": "5162.50", "currency": "MAD" }, "awb_commission_share": { "amount": "87.50", "currency": "MAD" }, "sandbox_surcharge": { "amount": "960.00", "currency": "MAD" }, "indicative": false }, "settlement_id": "0a9f8e7d-6c5b-4a3f-8e2d-1c0b9a8f7e6d", "created_at": "2026-07-12T10:05:00Z", "traveler": { "first_name": "Amina", "last_name": "Benali", "email": "amina.benali@example.com", "phone": "+212600112233", "language": "fr", "customer_reference": "YBANK-CUST-77310" }, "rooms_allocation": [ { "room_index": 0, "occupants": [ { "type": "ADULT" }, { "type": "ADULT" }, { "type": "CHILD", "age": 8 }, { "type": "CHILD", "age": 12 } ] } ], "special_requests": null, "payment_confirmation": { "bank_payment_ref": "YBANK-PAY-2026-07-12-00891", "paid_at": "2026-07-12T10:04:30Z", "payment_method": "ACCOUNT_DEBIT" }, "snapshot_id": "5e6d7c8b-9a0f-4b1c-8d2e-3f4a5b6c7d8e", "cancellation_tiers": [ { "days_before": 30, "refund_percent": 100, "refundable_amount": { "amount": "5400.00", "currency": "MAD" } }, { "days_before": 14, "refund_percent": 50, "refundable_amount": { "amount": "2700.00", "currency": "MAD" } }, { "days_before": 7, "refund_percent": 0, "refundable_amount": { "amount": "0.00", "currency": "MAD" } } ], "voucher_url": "https://placehold.co/600x400?text=DEMO" }

Authorizations

Authorization
string
header
default:sk_test_DEMO0000_replace_with_your_sandbox_key
required

API key authentication. Issued by the Safariat admin or via the partner portal. The secret is shown only once at generation.

Production sk_live_* keys must additionally sign every write request (POST/PUT/DELETE) with the X-Timestamp and X-Signature headers. Sandbox sk_test_* keys are exempt from request signing: X-Signature and X-Timestamp are not required for writes in the sandbox (so the developer-portal "Try it" playground works end to end). The Idempotency-Key header remains required on writes in both environments.

Path Parameters

booking_number
string
required

Safariat booking number (format MV-XXXXXX). In the sandbox, create a booking first (POST /bookings) and use the returned number here.

Pattern: ^MV-[A-Z0-9]{6}$

Response

Booking found

booking_number
string
required
Example:

"MV-AB7X92"

partner_reference
string
required
status
enum<string>
required

The partner channel skips the PENDING status (no payment-wait window). Additional internal Safariat statuses (PAYMENT_PROCESSING, REFUND_PENDING) are never exposed on this API.

Available options:
CONFIRMED,
COMPLETED,
CANCELLED
adventure_slug
string
required
travel_date
string<date>
required
pricing
object
required

Revenue breakdown with the real surcharge recorded at booking (indicative = false).

created_at
string<date-time>
required
traveler
object
required
rooms_allocation
object[]
required
payment_confirmation
object
required

Payment confirmation echoed back on the booking (response projection). The monetary amounts (customer total, net due to Safariat, surcharge) are exposed via pricing.

snapshot_id
string<uuid>
required

ID of the adventure snapshot captured at creation (see ADR-013). Guarantees the traveler receives the experience as it was at the time of booking.

cancellation_tiers
object[]
required
adventure_title
string
traveler_name
string

Initialed (e.g. 'A. B.') for PII protection in lists.

settlement_id
string<uuid> | null

ID of the settlement this booking is included in (null if not yet invoiced).

special_requests
string | null
voucher_url
string<uri>

Pre-signed URL to the PDF voucher (7-day TTL).