Ignav Flight API
Ignav Flight API — keyless JSON API
Ignav Flight API. The Ignav API provides developers with access to flight prices and direct booking links. Users can search for one-way and round-trip fares across various routes and generate booking URLs for selected itineraries.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://ignav.com/openapi.json
{
"openapi": "3.1.0",
"info": {
"title": "Ignav Public API",
"description": "Public fare search, booking-link, and airport-search contract.",
"version": "1.0.0"
},
"paths": {
"/api/airports": {
"get": {
"summary": "Search Airports",
"operationId": "search_airports_api_airports_get",
"parameters": [
{
"name": "q",
"in": "query",
"required": true,
"schema": {
"type": "string",
"title": "Q"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"maximum": 20,
"minimum": 1,
"default": 10,
"title": "Limit"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AirportModel"
},
"title": "Response Search Airports Api Airports Get"
}
}
}
},
"400": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
},
"description": "Bad Request"
},
"401": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
},
"description": "Unauthorized"
}
}
}
},
"/api/fares/one-way": {
"post": {
"summary": "Search One Way",
"description": "Search one-way itineraries.",
"operationId": "search_one_way_api_fares_one_way_post",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OneWayRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FareSearchResponseModel"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"424": {
"description": "Failed Dependency",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
}
}
}
},
"/api/fares/round-trip": {
"post": {
"summary": "Search Round Trip",
"description": "Search round-trip itineraries.",
"operationId": "search_round_trip_api_fares_round_trip_post",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoundTripRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FareSearchResponseModel"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"424": {
"description": "Failed Dependency",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
}
}
}
},
"/api/fares/booking-links": {
"post": {
"summary": "Get Booking Links",
"description": "Get booking links for a specific itinerary.",
"operationId": "get_booking_links_api_fares_booking_links_post",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookingLinksRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookingOptionsResponseModel"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
},
"424": {
"description": "Failed Dependency",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponseModel"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"AirportModel": {
"properties": {
"code": {
"type": "string",
"title": "Code"
},
"name": {
"type": "string",
"title": "Name"
},
"city": {
"type": "string",
"title": "City"
},
"country": {
"type": "string",
"title": "Country"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"code",
"name"
],
"title": "AirportModel"
},
"BaggageAllowanceModel": {
"properties": {
"carry_on": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Carry On"
},
"checked": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Checked"
}
},
"additionalProperties": false,
"type": "object",
"title": "BaggageAllowanceModel"
},
"BookingLinkModel": {
"properties": {
"provider_name": {
"type": "string",
"title": "Provider Name"
},
"provider_type": {
"title": "Provider Type",
"type": "string",
"enum": [
"airline",
"third_party"
]
},
"fare_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Fare Name"
},
"price": {
"anyOf": [
{
"$ref": "#/components/schemas/PriceModel"
},
{
"type": "null"
}
]
},
"url": {
"type": "string",
"title": "Url"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"provider_name",
"url"
],
"title": "BookingLinkModel"
},
"BookingLinksRequest": {
"properties": {
"ignav_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ignav Id"
},
"origin": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Origin"
},
"destination": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Destination"
},
"departure_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
],
"title": "Departure Date"
},
"outbound_carrier_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Outbound Carrier Code"
},
"outbound_flight_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Outbound Flight Number"
},
"return_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
],
"title": "Return Date"
},
"inbound_carrier_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Inbound Carrier Code"
}
},
"additionalProperties": false,
"type": "object",
"title": "BookingLinksRequest"
},
"BookingOptionModel": {
"properties": {
"legs": {
"items": {
"type": "string",
"enum": [
"outbound",
"inbound"
]
},
"type": "array",
"title": "Legs"
},
"links": {
"items": {
"$ref": "#/components/schemas/BookingLinkModel"
},
"type": "array",
"title": "Links"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"legs",
"links"
],
"title": "BookingOptionModel"
},
"BookingOptionsResponseModel": {
"properties": {
"itinerary": {
"$ref": "#/components/schemas/ItineraryModel"
},
"booking_options": {
"items": {
"$ref": "#/components/schemas/BookingOptionModel"
},
"type": "array",
"title": "Booking Options"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"itinerary",
"booking_options"
],
"title": "BookingOptionsResponseModel"
},
"ErrorDetailModel": {
"properties": {
"type": {
"type": "string",
"title": "Type"
},
"code": {
"type": "string",
"title": "Code"
},
"message": {
"type": "string",
"title": "Message"
},
"field": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Field"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"type",
"code"
],
"title": "ErrorDetailModel"
},
"ErrorResponseModel": {
"properties": {
"error": {
"$ref": "#/components/schemas/ErrorDetailModel"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"error"
],
"title": "ErrorResponseModel"
}
},
"securitySchemes": {
"ApiKeyAuth": {
"type": "apiKey",
"in": "header",
"name": "X-Api-Key"
}
}
},
"servers": [
{
"url": "https://ignav.com"
}
],
"security": [
{
"ApiKeyAuth": []
}
]
}curl "https://ignav.com/openapi.json"const res = await fetch("https://ignav.com/openapi.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://ignav.com/openapi.json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/openapi.jsonPROBEDIgnav Flight API — keyless JSON API
/openapi.json?limit=5Paginated variant with limit parameter.
/api/airportsSearch Airports
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Ignav Flight API: common questions
Is Ignav Flight API free to use?
Yes — Ignav Flight API is a free transport API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Ignav Flight API need an API key?
No — Ignav Flight API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Ignav Flight API from the browser?
Not directly — Ignav Flight API doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Ignav Flight API up right now?
Ignav Flight API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.