Flights live · Hotels coming soon

The flight API behind N8Go, now open to your product.

N8Go B2B gives your travel business programmatic access to the same aggregated flight inventory that powers n8go.co.uk. Search, price and book real fares over one REST API, at wholesale, with a sandbox to build against before you ever quote a real customer.

Wholesale pricing

Every quote is built off our own net supplier cost, marked up by your account’s own rate. Set one flat rate, or set a rate per route. You never see our cost; you always know your margin.

A real sandbox

A sandbox key returns deterministic fixture data, in the exact same response shapes as live. Build and test your whole integration before a single real search runs.

Flexible-date search

One call prices a route across a week of candidate dates, one-way or round trip. Built for a fare calendar, not just a single-date results page.

A booking lifecycle that fits your flow

Create a checkout session, confirm payment on your own frontend, then complete the booking. Idempotency keys mean a retried request never double-books.

One call to search

A response shaped for how you’ll actually use it

totalPrice is already marked up per your account’s own pricing rule. There’s no separate lookup and no guessing what you’ll be charged. Offer ids are opaque and stable for the life of the quote; re-fetch before you book to confirm the price hasn’t moved.

POST /v1/flights/search
x-api-key: n8go_sandbox_...

{
  "origin": "LHR",
  "destination": "JFK",
  "departureDate": "2026-11-15",
  "passengers": { "adults": 1 }
}

→ 200 OK
{
  "offers": [{
    "id": "kyte:7f3a...",
    "totalPrice": { "amountMinor": 24200, "currency": "GBP" },
    "owner": { "iataCode": "BA", "name": "British Airways" },
    "totalStops": 0,
    "fareBrand": "Standard"
  }]
}
Coming soon

Hotels are joining the API next.

The same wholesale model, the same sandbox-first workflow, the same account and API keys you already have. Search and book hotel inventory alongside flights, in one integration.