Calendar Fare Of The Day

Calendar Fare Of The Day API

The Calendar Fare of the Day API allows you to retrieve flight fare information for a specific date and route, helping you get the best available fares from selected airlines.

API Endpoint

POST /flight/day_calendar_fare

Request Format

Parameters

ParameterTypeRequiredDescription
client_referenceIdstringYesUnique reference ID for tracking the request
originstringYesIATA airport code for departure city (e.g., "DEL")
destinationstringYesIATA airport code for arrival city (e.g., "BOM")
cabin_classstringYesTravel class preference ("economy", "business", "first")
departure_datestringYesDeparture date in YYYY-MM-DD format
departure_periodstringNoTime preference ("morning", "afternoon", "evening", "night")
sourcearrayNoArray of airline codes to filter results (e.g., ["6E", "AI"])

Example Request

{
  "client_referenceId": "REF123456789",
  "origin": "DEL",
  "destination": "BOM",
  "cabin_class": "economy",
  "departure_date": "2025-06-01",
  "departure_period": "morning",
  "source": ["6E"]
}

Response Format

Success Response

FieldTypeDescription
statusstringResponse status ("SUCCESS" or "ERROR")
status_codestringHTTP status code
messagestringDescriptive message about the response
dataobjectContains the fare data and metadata

Data Object

FieldTypeDescription
trace_idstringUnique identifier for tracking the transaction
originstringDeparture airport code
destinationstringArrival airport code
resultarrayArray of flight fare options

Result Array Items

FieldTypeDescription
airline_codestringIATA airline code (e.g., "6E")
airline_namestringFull airline name (e.g., "Indigo")
departure_timestringFlight departure date and time (YYYY-MM-DD HH:MM:SS)
farenumberTotal fare amount in local currency
basefarenumberBase fare amount before taxes and surcharges
tax_and_surchargesnumberAdditional taxes and surcharge amounts

Example Response

{
    "status": "SUCCESS",
    "status_code": "200",
    "message": "Calendar fare for the day has been successfully fetched.",
    "data": {
        "trace_id": "b3ad7061-f6b2-4859-94f1-ddf870dd8414",
        "origin": "DEL",
        "destination": "BOM",
        "result": [
            {
                "airline_code": "6E",
                "airline_name": "Indigo",
                "departure_time": "2025-06-01 05:00:00",
                "fare": 6021,
                "basefare": 6021,
                "tax_and_surcharges": 841
            }
        ]
    }
}

Use Cases

  • Fare Comparison: Compare fares across different airlines for the same route
  • Price Monitoring: Track fare changes for specific dates and routes
  • Travel Planning: Find the most cost-effective flight options for your itinerary
  • Budget Analysis: Break down fare components (base fare vs. taxes/surcharges)

Notes

  • All fare amounts are returned in the local currency of the departure country
  • The departure_period parameter helps filter flights based on preferred travel times
  • Multiple airline codes can be specified in the source array to compare fares
  • The trace_id can be used for troubleshooting and support inquiries
Language
Click Try It! to start a request and see the response here!