FlightLabs Pricing API

Flight pricing and fare data endpoints

Operations 2

GET /flight-prices Flight Prices #
GET /taxes Aviation Taxes #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/flightlabs-pricing-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

flightlabs-pricing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FlightLabs Aircraft Pricing API
  description: 'Real-time and historical flight tracker and status API providing live data for flights, airports, schedules, timetables, IATA codes, airline routes, and flight pricing globally. Operated by Zyla Labs, FlightLabs offers 16+ endpoints covering live flights, flight delays, future predictions, airline routes, and flight pricing.

    '
  version: '1.0'
  contact:
    name: FlightLabs Support
    email: hello@goflightlabs.com
    url: https://www.goflightlabs.com
  termsOfService: https://www.goflightlabs.com/terms
  license:
    name: Commercial
    url: https://www.goflightlabs.com/pricing
servers:
- url: https://app.goflightlabs.com
  description: FlightLabs Production API
security:
- AccessKey: []
tags:
- name: Pricing
  description: Flight pricing and fare data endpoints
paths:
  /flight-prices:
    get:
      operationId: getFlightPrices
      summary: Flight Prices
      description: 'Search fares and pricing between airports on specified travel dates. Returns price estimates and availability information.

        '
      tags:
      - Pricing
      parameters:
      - $ref: '#/components/parameters/AccessKey'
      - $ref: '#/components/parameters/Limit'
      - name: depIata
        in: query
        description: Departure airport IATA code
        required: false
        schema:
          type: string
          example: JFK
      - name: arrIata
        in: query
        description: Arrival airport IATA code
        required: false
        schema:
          type: string
          example: LAX
      - name: date
        in: query
        description: Travel date (YYYY-MM-DD)
        required: false
        schema:
          type: string
          format: date
          example: '2026-07-01'
      - name: currency
        in: query
        description: Currency code for prices (ISO 4217)
        required: false
        schema:
          type: string
          example: USD
      responses:
        '200':
          description: Successful response with flight prices
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlightPricesResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
  /taxes:
    get:
      operationId: getTaxes
      summary: Aviation Taxes
      description: 'Retrieve aviation tax reference data including IATA tax codes and names.

        '
      tags:
      - Pricing
      parameters:
      - $ref: '#/components/parameters/AccessKey'
      - name: codeIataTax
        in: query
        description: IATA tax code
        required: false
        schema:
          type: string
          example: YQ
      responses:
        '200':
          description: Successful response with tax data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxesResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    Limit:
      name: limit
      in: query
      description: Maximum number of results to return (integer, up to 10000)
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 10000
        example: 100
    AccessKey:
      name: access_key
      in: query
      description: Your FlightLabs API access key
      required: true
      schema:
        type: string
        example: YOUR_ACCESS_KEY
  responses:
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Unauthorized - invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: integer
              example: 101
            type:
              type: string
              example: invalid_access_key
            info:
              type: string
              example: You have not supplied a valid API Access Key.
    TaxesResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: array
          items:
            $ref: '#/components/schemas/TaxData'
    TaxData:
      type: object
      description: Aviation tax reference data
      properties:
        taxId:
          type: string
          example: '1'
        nameTax:
          type: string
          example: Fuel Surcharge
        codeIataTax:
          type: string
          example: YQ
    FlightPricesResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: array
          items:
            $ref: '#/components/schemas/FlightPriceData'
    FlightPriceData:
      type: object
      description: Flight pricing data
      properties:
        dep_iata:
          type: string
          example: JFK
        arr_iata:
          type: string
          example: LAX
        airline_iata:
          type: string
          example: AA
        flight_iata:
          type: string
          example: AA100
        dep_time:
          type: string
          format: date-time
          example: '2026-07-01T10:00:00.000'
        arr_time:
          type: string
          format: date-time
          example: '2026-07-01T13:30:00.000'
        price:
          type: number
          format: float
          description: Price in specified currency
          example: 299.99
        currency:
          type: string
          description: Currency code (ISO 4217)
          example: USD
        seats_available:
          type: integer
          description: Number of seats available
          example: 12
        cabin_class:
          type: string
          enum:
          - economy
          - premium_economy
          - business
          - first
          example: economy
  securitySchemes:
    AccessKey:
      type: apiKey
      in: query
      name: access_key
      description: API key obtained from your FlightLabs dashboard
externalDocs:
  description: FlightLabs API Documentation
  url: https://www.goflightlabs.com/dashboard#api-documentation