{
  "info": {
    "name": "Ignav Flights — mcp.ai",
    "description": "REST API for the Ignav Flights MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/ignav_flights",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ignav_flights_get_booking_links",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/booking/links",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "booking",
            "links"
          ]
        },
        "description": "Get current direct airline or OTA booking links for a recent Ignav fare result or a manually specified one-way/round-trip flight. Prefer lookup mode 'ignav_id' with an ID from a recent fare search. Ea",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lookup\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ignav_flights_search_airports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/airports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "airports"
          ]
        },
        "description": "Find supported airport-level IATA codes by code, airport name, city, country, or metro-style query. Use before fare search when an airport code is uncertain. Each successful call consumes one Ignav us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ignav_flights_search_flexible_fares",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/flexible/fares",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "flexible",
            "fares"
          ]
        },
        "description": "Search one or two ordered flight legs for multi-city, open-jaw, or other flexible trips. Returns ranked complete journeys rather than every leg combination. Each successful call consumes one Ignav usa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"legs\": \"\",\n  \"adults\": 0,\n  \"market\": \"\",\n  \"children\": 0,\n  \"max_price\": 0,\n  \"cabin_class\": \"\",\n  \"infants_on_lap\": 0,\n  \"infants_in_seat\": 0,\n  \"airlines_exclude\": \"\",\n  \"airlines_include\": \"\",\n  \"min_checked_bags\": 0,\n  \"min_carry_on_bags\": 0,\n  \"allow_self_transfer\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ignav_flights_search_one_way_fares",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/one/way/fares",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "one",
            "way",
            "fares"
          ]
        },
        "description": "Search complete one-way flight itineraries between two airport-level IATA codes on a future date. Returns ranked fares and ignav_id values for booking-link lookup. Each successful call consumes one Ig",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"adults\": 0,\n  \"market\": \"\",\n  \"origin\": \"\",\n  \"children\": 0,\n  \"max_price\": 0,\n  \"max_stops\": 0,\n  \"cabin_class\": \"\",\n  \"destination\": \"\",\n  \"departure_date\": \"\",\n  \"infants_on_lap\": 0,\n  \"infants_in_seat\": 0,\n  \"airlines_exclude\": \"\",\n  \"airlines_include\": \"\",\n  \"min_checked_bags\": 0,\n  \"min_carry_on_bags\": 0,\n  \"allow_self_transfer\": false,\n  \"departure_time_range\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ignav_flights_search_round_trip_fares",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/round/trip/fares",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "round",
            "trip",
            "fares"
          ]
        },
        "description": "Search complete round-trip itineraries between two airport-level IATA codes with outbound and return dates. Returns ranked fares and ignav_id values for booking-link lookup. Each successful call consu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"adults\": 0,\n  \"market\": \"\",\n  \"origin\": \"\",\n  \"children\": 0,\n  \"max_price\": 0,\n  \"max_stops\": 0,\n  \"cabin_class\": \"\",\n  \"destination\": \"\",\n  \"return_date\": \"\",\n  \"departure_date\": \"\",\n  \"infants_on_lap\": 0,\n  \"infants_in_seat\": 0,\n  \"airlines_exclude\": \"\",\n  \"airlines_include\": \"\",\n  \"min_checked_bags\": 0,\n  \"min_carry_on_bags\": 0,\n  \"return_time_range\": {},\n  \"allow_self_transfer\": false,\n  \"departure_time_range\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}