Jets & Partners API
Docs / Getting Started

Getting Started

Everything you need to start using the Jets & Partners API in minutes.

Prerequisites

  • An API key from Jets & Partners
  • An HTTP client (curl, Postman, Insomnia, or your language of choice)
  • Basic knowledge of REST APIs and JSON

Request an API Key

Contact hello@jets.partners with your company name and use case. Keys are typically issued within 24 hours. You can also self-register via the client portal.

Base URL

All API requests use the following base URL:

https://booking.api.jets.partners/api

Authentication

Include your API key in every request using one of these methods:

Bearer Token (recommended)
Authorization: Bearer jtp_your_api_key
X-API-Key Header
X-API-Key: jtp_your_api_key

Your First Request

Search for charter flight options from New York to Los Angeles:

curl -X POST https://booking.api.jets.partners/api/quoting/options \
  -H "Authorization: Bearer jtp_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "legs": [{
      "origin": {"icao": "KJFK"},
      "destination": {"icao": "KLAX"},
      "departure": "2026-03-15",
      "passengers": 4
    }],
    "category": "heavy_jet"
  }'

Response Format

All responses return JSON with this structure:

{
  "success": true,
  "options": [...],
  "count": 3,
  "pagination": {
    "page": 1,
    "per_page": 3,
    "total": 12,
    "has_more": true,
    "page_token": "ZmxpZ2h0X3NlYX..."
  }
}

Rate Limits

Window Limit Header
Per Minute60X-RateLimit-Limit
Per Hour1,000X-RateLimit-Remaining
Per Day10,000X-RateLimit-Reset

Next Steps