RadarBox On Demand API (2.2.14)

Download OpenAPI specification:Download

AirNav RadarBox On Demand API enables you to quickly and easily integrate real-time, scheduled or historical flight data into your solutions. Available fields include flight number, scheduled, estimated and actual departure and arrival times, flight parameters such as speed and altitude, aircraft registration/tail-number.

A full list of available fields is listed on the response sections below.

For any questions, requests or suggestions contact our support

Note: for RadarBox old API documentation visit this page

Authentication

bearerToken

Security Scheme Type HTTP Value
HTTP Authorization Scheme bearer

Enter bearerToken

You can add token here and store it to use in your request calls in this page.

Flights

In this section you can find all of the endpoints related to live and historical flight data

Search flights by geographical area

Use this endpoint if you are interested in knowing which flights have flown over a particular geographical area at a given point in time

Authorizations:
query Parameters
page
integer <int32>

Request page

pageSize
integer <int32>

Page size

header Parameters
Authorization
string
Request Body schema: application/json
fromDate
required
string <date-time> (Beginning of the search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
maxLatitude
required
number <double> (Maximum latitude for the bounding rectangle from which positions will be retrieved)
maxLongitude
required
number <double> (Maximum longitude for the bounding rectangle from which positions will be retrieved)
minLatitude
required
number <double> (Minimum latitude for the bounding rectangle from which positions will be retrieved)
minLongitude
required
number <double> (Minimum longitude for the bounding rectangle from which positions will be retrieved)
toDate
required
string <date-time> (End of the search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
pageSize
integer <int32> (Page size)
Default: 10
page
integer <int32> (Page)
Default: 1
belowAltitude
integer <int32> (Only returns positions below this altitude - in feet)
aboveAltitude
integer <int32> (Only returns positions above this altitude - in feet)
includeFlightPaths
boolean (Include flight path positions in the results)
registrations
Array of strings (Filters the results by registration/tail-number)
modeSHexCodes
Array of strings (Mode-s Hex codes of the aircraft)
airlines
Array of strings (Filters response by 3 letters operator ICAO codes) unique
aircraftTypes
Array of strings (Filters the results by the 4 letter ICAO code aircraft types) unique
aircraftClasses
Array of strings (Filters response by aircraft class) unique

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
Array of objects (List of flights)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
totaPages
integer <int32> (Total pages in the dataset)
pageSize
integer <int32> (Page size)
currentPage
integer <int32> (Current page)
Copied
post/flights/geosearch
https://api.radarbox.com/v2/flights/geosearch

Request samples

Content type
application/json
{
  • "pageSize": 10,
  • "page": 1,
  • "minLatitude": 51.431234,
  • "maxLatitude": 51.509776,
  • "minLongitude": -2.962865,
  • "maxLongitude": -0.372603,
  • "belowAltitude": 10000,
  • "aboveAltitude": 20,
  • "includeFlightPaths": true,
  • "registrations": [
    • "TC-JJU",
    • "9V-SMN"
    ],
  • "modeSHexCodes": [
    • "4BA955",
    • "76CDAE"
    ],
  • "fromDate": "2020-04-20T10:25:00Z",
  • "toDate": "2020-04-20T10:30:00Z",
  • "airlines": [
    • "SIA",
    • "THY"
    ],
  • "aircraftTypes": [
    • "B77W",
    • "A359"
    ],
  • "aircraftClasses": [
    • "AIRLINER",
    • "CARGO"
    ]
}

Get live flights

Use this endpoint if your goal is to get real time information for live flights, either if you are looking for a specific geographical location or particular aircraft/airline/airport.

Authorizations:
header Parameters
Authorization
string
Request Body schema: application/json
registrations
Array of strings (Filters the results by registration/tail-number)
flightIds
Array of strings (Filters the results by Flight number/callsigns)
airlines
Array of strings (Filter the results by the 3 letter ICAO code operator)
aircraftTypes
Array of strings (Filters the results by the 4 letter ICAO code aircraft type)
incLastKnownPos
boolean (Flag indicating whether archived flights should be returned as well)
minLatitude
number <double> (Minimum latitude for the bounding rectangle from which positions will be retrieved)
maxLatitude
number <double> (Maximum latitude for the bounding rectangle from which positions will be retrieved)
minLongitude
number <double> (Minimum longitude for the bounding rectangle from which positions will be retrieved)
maxLongitude
number <double> (Maximum longitude for the bounding rectangle from which positions will be retrieved)
fromAirports
Array of strings (Only show flights that departed from these airports (ICAO code))
toAirports
Array of strings (Only show flights that are headed to these airports (ICAO code))
toOrFromAirports
Array of strings (Only show flights that departed or are headed to these airports (ICAO code))

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
Array of objects (List of flights)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
totaPages
integer <int32> (Total pages in the dataset)
pageSize
integer <int32> (Page size)
currentPage
integer <int32> (Current page)
Copied
post/flights/live
https://api.radarbox.com/v2/flights/live

Request samples

Content type
application/json
{
  • "registrations": [
    • "G-YMML"
    ],
  • "flightIds": [
    • "AAL1054"
    ],
  • "airlines": [
    • "BAW"
    ],
  • "aircraftTypes": [
    • "B772"
    ],
  • "incLastKnownPos": true,
  • "minLatitude": 0.431234,
  • "maxLatitude": 51.509776,
  • "minLongitude": -2.962865,
  • "maxLongitude": -0.372603,
  • "fromAirports": [
    • "EGLL"
    ],
  • "toAirports": [
    • "EGGL"
    ],
  • "toOrFromAirports": [
    • "EGLL"
    ]
}

Get scheduled flights

Use this endpoint if you want to know schedules of future flights

Authorizations:
query Parameters
flightId
string
Example: flightId=AA300

Flight ID/Number (ICAO or IATA

fromAirport
string
Example: fromAirport=KLAX

Request only flights departing from this airport (IATA/ICAO)

toAirport
string
Example: toAirport=KJFK

Request only flights arriving to this airport (IATA/ICAO)

airline
string
Example: airline=DAL

Request only flights for this airline

departureFromDate
string <date-time>
Example: departureFromDate=2024-06-01T10:00:00Z

Request only flights that depart from this date onwards (format yyyy-MM-dd'T'HH:mm:ss'Z')

departureToDate
string <date-time>
Example: departureToDate=2024-06-01T13:00:00Z

Request only flights that depart until this date (format yyyy-MM-dd'T'HH:mm:ss'Z')

arrivalFromDate
string <date-time>
Example: arrivalFromDate=2024-06-01T10:00:00Z

Request only flights that arrive from this date onwards (format yyyy-MM-dd'T'HH:mm:ss'Z')

arrivalToDate
string <date-time>
Example: arrivalToDate=2024-06-01T13:00:00Z

Request only flights that arrive until this date (format yyyy-MM-dd'T'HH:mm:ss'Z')

header Parameters
Authorization
string

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (List of flights)
Copied
get/flights/schedules
https://api.radarbox.com/v2/flights/schedules

Search flights

Use this endpoint for general flight searches - past, present or future (scheduled) - based on departure/arrival location or individual flights and tail numbers. The search always needs to be restricted by date (either departure, arrival or both).

Authorizations:
query Parameters
page
integer <int32>
Example: page=1

Request page

pageSize
integer <int32>
Example: pageSize=10

Page size

header Parameters
Authorization
string
Request Body schema: application/json
pageSize
integer <int32> (Page size)
Default: 10
page
integer <int32> (Page)
Default: 1
fromDate
string <date-time> (Beginning of the search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
toDate
string <date-time> (End of the search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
departureFromDate
string <date-time> (Beginning of the departure date search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
departureToDate
string <date-time> (End of the departure date search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
arrivalFromDate
string <date-time> (Beginning of the arrival date search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
arrivalToDate
string <date-time> (End of the arrival date search window in UTC (format: yyyy:MM:ddTHH:mm:ss.sssZ))
registrations
Array of strings (Filters the results by registration/tail-number)
flightIds
Array of strings (List of flight numbers for the flight in ICAO or IATA format)
modeSHexCodes
Array of strings (Mode-s Hex codes of the aircraft)
airlines
Array of strings (Filter the results by the 3 letter ICAO code operator)
toAirports
Array of strings (Filters response for flights arriving to a specific airport ICAO codes)
toCountries
Array of strings (Filters response for flights arriving to a specific country (ISO-2))
fromAirports
Array of strings (Filters response for flights departing from specific airport ICAO codes)
fromCountries
Array of strings (Filters response for flights departing from a specific country (ISO-2))
divertedToAirports
Array of strings (Filters response for flights diverted to a specific airports)
divertedToCountries
Array of strings (Filters response for flights diverted to a specific country (ISO-2))
includeFlightPaths
boolean (Include flight path positions in the results)
includeFlightUrls
boolean (Include flight and track log)
onlyDiverted
boolean (Include only diverted flights)
sources
Array of strings (Only show data that come from these sources)
Items Enum: "ADSB" "ASDI" "ASDEX" "OCEA" "MLAT" "HFDL" "SATE"
aircraftClasses
Array of strings (Filters response by aircraft class)

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
Array of objects (List of flights)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
totaPages
integer <int32> (Total pages in the dataset)
pageSize
integer <int32> (Page size)
currentPage
integer <int32> (Current page)
Copied
post/flights/search
https://api.radarbox.com/v2/flights/search

Request samples

Content type
application/json
{
  • "pageSize": 10,
  • "page": 1,
  • "fromDate": "2020-01-06T00:00:00Z",
  • "toDate": "2020-01-06T23:59:59Z",
  • "departureFromDate": "2020-01-06T00:00:00Z",
  • "departureToDate": "2020-01-06T23:59:59Z",
  • "arrivalFromDate": "2020-01-06T00:00:00Z",
  • "arrivalToDate": "2020-01-06T23:59:59Z",
  • "registrations": [
    • "PH-BHO",
    • "G-YMML"
    ],
  • "flightIds": [
    • "KL745",
    • "BAW195"
    ],
  • "modeSHexCodes": [
    • "485789",
    • "4007F7"
    ],
  • "airlines": [
    • "BAW",
    • "KLM"
    ],
  • "toAirports": [
    • "KIAH",
    • "SKBO"
    ],
  • "toCountries": [
    • "US",
    • "JP"
    ],
  • "fromAirports": [
    • "EHAM",
    • "EGLL"
    ],
  • "fromCountries": [
    • "US",
    • "JP"
    ],
  • "divertedToAirports": [
    • "EHAM",
    • "EGLL"
    ],
  • "divertedToCountries": [
    • "US",
    • "JP"
    ],
  • "includeFlightPaths": false,
  • "includeFlightUrls": true,
  • "onlyDiverted": true,
  • "sources": [
    • "ADSB",
    • "MLAT",
    • "ASDI"
    ],
  • "aircraftClasses": [
    • "AIRLINER",
    • "CARGO"
    ]
}

Aircraft

In this section you can find all of the endpoints related to aircraft data, such as tail number, ICAO type, owner (company), serial number or first flight. You can also find statistics of flight hours and most used airports

Aircraft by ID

Use this endpoint if you are looking for details or statistics for a specific aircraft (find by Mode-S hex code or tail number)

Authorizations:
query Parameters
modeS
string
Example: modeS=A98909

Mode-S code

registration
string
Example: registration=N713UW

Registration

includeStatistics
boolean
Example: includeStatistics=true

Include statistics

startMonth
string
Example: startMonth=2023-01

Statistics start month (yyyy-MM)

endMonth
string
Example: endMonth=2023-03

Statistics end month (yyyy-MM)

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
object (Aircraft)
Copied
get/aircraft
https://api.radarbox.com/v2/aircraft

Aircraft search

Use this endpoint if you want to list all aircraft of a specific ICAO type or company

Authorizations:
query Parameters
aircraftType
string
Example: aircraftType=B738

ICAO aircraft type

airline
string
Example: airline=AAL

Airline (ICAO code)

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Aircraft)
Copied
get/aircraft/search
https://api.radarbox.com/v2/aircraft/search

Airports

In this section you can find all of the endpoints related to global airport data. You can get details of specific airports (by ICAO or IATA code) as well as searching by country, city, or latitude/longitude. You will get access to static information such as codes, cities, countries, elevation, time zone and list of runways as well as real-time informations (e.g runway in use; recent takeoff/landing statistics)

Airport search

Use this endpoint if you are trying to find all airports in a country, city or within a specific region.

Authorizations:
query Parameters
countryCode
string
Example: countryCode=US

Country code (ISO-2 or ISO-3)

countryName
string
Example: countryName=United States

Country name

icaoCode
string
Example: icaoCode=KJFK

Airport ICAO code

onlyMajor
boolean
Example: onlyMajor=true

Only major airports

city
string
Example: city=New York

City

latitude1
number <double>
Example: latitude1=40.5398

Latitude 1

longitude1
number <double>
Example: longitude1=-73.8789

Longitude 1

latitude2
number <double>
Example: latitude2=40.7398

Latitude 2

longitude2
number <double>
Example: longitude2=-73.6789

Longitude 2

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (List of flights)
Copied
get/airports/search
https://api.radarbox.com/v2/airports/search

Airport by code

Use this endpoint if you know exactly which airport you need to know details for - you can search by ICAO or IATA code.

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
object (Flight)
Copied
get/airports/{icaoCode}
https://api.radarbox.com/v2/airports/{icaoCode}

Get D-ATIS by airport

ATIS (Automatic Terminal Information Service) is a service that continuously broadcasts aeronautical information around the airport. D-ATIS is the text transcription of the information provided by it. Use this endpoint to find the latest information for a specific airport.

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
object (D-ATIS (Data link - Automatic Terminal Information Service))

ATIS is a service that continuously broadcasts aeronautical information around the airport. D-ATIS is the text transcription of the information provided by it.

Copied
get/airports/{icaoCode}/datis
https://api.radarbox.com/v2/airports/{icaoCode}/datis

Get METAR by airport

METARs (METeorological Aerodrome Reports) provide a report of the current weather conditions in the vicinity of an aerodrome. Use this endpoint to get the most up-to-date METAR information.

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
object (METAR (METeorological Aerodrome Report))

METARs provide a report of the current weather conditions in the vicinity of an aerodrome

Copied
get/airports/{icaoCode}/metar
https://api.radarbox.com/v2/airports/{icaoCode}/metar

Get TAF by airport

TAF (Terminal Aerodrome Forecast) is a weather forecast information service provided by airports to serve the surrounding air traffic. TAF reports are updated several times throughout the day to ensure that pilots have access to the most up-to-date information as possible. You can use this endpoint to get the latest weather information for a specific airport.

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
object (TAF (Terminal Aerodrome Forecast))

Weather forecast Information provided by airports to serve the surrounding air traffic. TAF reports are updated several times throughout the day to ensure that pilots have access to the most up-to-date information as possible

Copied
get/airports/{icaoCode}/taf
https://api.radarbox.com/v2/airports/{icaoCode}/taf

Airspace

In this section you can find all of the endpoints related to global airspace data - NAT/PAC Tracks or

NAT (North Atlantic Tracks)

The North Atlantic Tracks are high altitude routes across the atlantic between Western Europe and North America. The tracks are updated daily. Use this endpoint to get the most up-to-date tracks

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (List of tracks)
Copied
get/airspace/natTracks
https://api.radarbox.com/v2/airspace/natTracks

PAC (Pacific Organized Track System - PACOTS)

Pacific Organized Track System describes the set of routes across the Pacific between Hawaii or North America and Japan/South-east Asia - updated on a daily basis. Use this endpoint to get the most up-to-date information.

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (List of tracks)
Copied
get/airspace/pacTracks
https://api.radarbox.com/v2/airspace/pacTracks

Get NOTAMS by airport

NOTAMs (NOtice To AirMen) are a way of local aviation authorities alerting pilots of potential hazards. Use this endpoint if you want to see the alerts that are relevant for a specific airport.

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Airport NOTAMs)
Copied
get/airspace/{icaoCode}/notams
https://api.radarbox.com/v2/airspace/{icaoCode}/notams

Statistics

General statistics of air traffic, airports and aircraft

Statistics for a specific airline

Get detailed statistics for a specific airline

Authorizations:
path Parameters
icaoCode
required
string
Example: KJFK

ICAO code

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Aggregated statistics per day)
Copied
get/statistics/airline/{icaoCode}
https://api.radarbox.com/v2/statistics/airline/{icaoCode}

Statistics for major airlines

Get statistics for major airlines

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Aggregated statistics per day)
Copied
get/statistics/airlines
https://api.radarbox.com/v2/statistics/airlines

Statistics for major airports

Get statistics for a specific airport

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Airports statistics)
Copied
get/statistics/airports
https://api.radarbox.com/v2/statistics/airports

Statistics for business flights on major airports

Get statistics for business flights on major airports

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Airports statistics)
Copied
get/statistics/airports/business
https://api.radarbox.com/v2/statistics/airports/business

Statistics for commercial flights on major airports

Get statistics for commercial flights on major airports

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Airports statistics)
Copied
get/statistics/airports/commercial
https://api.radarbox.com/v2/statistics/airports/commercial

Statistics for all flights

Get statistics for all flights worldwide

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Flights statistics)
Copied
get/statistics/flights
https://api.radarbox.com/v2/statistics/flights

Flights statistics (business)

Get statistics for all business flights

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Flights statistics)
Copied
get/statistics/flights/business
https://api.radarbox.com/v2/statistics/flights/business

Statistics for business jet models

Get statistics for business jet models

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Aggregated statistics per day)
Copied
get/statistics/flights/business/models
https://api.radarbox.com/v2/statistics/flights/business/models

Statistics for business jet operators

Get statistics for business jet operators

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Aggregated statistics per day)
Copied
get/statistics/flights/business/operators
https://api.radarbox.com/v2/statistics/flights/business/operators

Flights statistics (commercial)

Get statistics for all commercial flights

Authorizations:

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (Flights statistics)
Copied
get/statistics/flights/commercial
https://api.radarbox.com/v2/statistics/flights/commercial

Billing

Utilities for consulting realtime billing information (e.g. credit used in the current cycle, requests detail, daily statistics, etc)

Get the current billing status

Use this endpoint if you woould like to view details on the current usage of credit in your account

Authorizations:
header Parameters
Authorization
string

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
availableCredit
integer <int32>
subscriptionAmount
integer <int32>
usedCredit
integer <int32>
active
boolean
autoScaleEnabled
boolean
currentBillingCycleStart
string <date-time>
currentBillingCycleEnd
string <date-time>
lowestDayUsageAmount
integer <int64>
lowestDayUsageDate
string
highestDayUsageAmount
integer <int64>
highestDayUsageDate
string
Copied
get/billing/status
https://api.radarbox.com/v2/billing/status

Get the latest token usage statistics

Use this endpoint if you would like to view the latest usage of your token

Authorizations:
query Parameters
fromDate
string <date-time>

Show usage from this date only

toDate
string <date-time>

Show usage to this date only

header Parameters
Authorization
string

Responses

Response Schema: */*
cost
integer <int32> (Cost of the operation (credits))
success
boolean (Result of the operation)
comment
string (Additional info about the operation)
totalRecords
integer <int32> (Total records in the dataset)
maxRecords
integer <int32> (Restrict the total amount of records that the response can contain)
Array of objects (BillingTokenDailyStats)
Copied
get/billing/usage
https://api.radarbox.com/v2/billing/usage

광고 없이 이용해 보셨나요?

광고 차단기를 해제하거나 구독 플랜으로 Radarbox를 광고 없이 이용하세요. 이미 구독하셨나요? 로그인

구독

레이더박스 웹사이트에 접속할 수 있습니다. 당사 서비스를 계속 사용함으로써 귀하는 당사의 개인정보 보호정책에 동의하게 됩니다.

숨기기