For Agents
Fetch real-time arrivals and departures for any airport from the Cirium Studios FIDS distribution. Two endpoints, appId and appKey credentials, JSON or XML output.
Get started with Cirium FlightStats FIDS API (Studios) in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"get airport arrivals from Cirium Studios FIDS"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Cirium FlightStats FIDS API (Studios) API.
Retrieve real-time arrivals for an airport via the Cirium Studios FIDS distribution
Retrieve real-time departures for an airport in JSON or XML format
Authenticate using appId and appKey via header or query parameter
Drive a digital-signage flight board from the Studios-portal entry point
GET STARTED
Use for: I need to pull arrivals at JFK from Cirium Studios, Get the departures board for SFO via the Studios FIDS endpoint, Fetch real-time flights at LHR in JSON format, Retrieve scheduled departures from a given airport
Not supported: Does not handle ticket booking, fare pricing, or airline schedule changes — use for real-time airport arrivals and departures via the Studios distribution only.
This is the Cirium Studios distribution of the FlightStats FIDS API, served from the developer.studios.cirium.io developer portal. The API exposes two endpoints over https://api.flightstats.com — /flex/fids/rest/v1/{format}/{airport}/arrivals and /flex/fids/rest/v1/{format}/{airport}/departures — for real-time airport arrivals and departures intended for FIDS display screens, mobile apps, and itinerary tools. Authentication uses an appId plus appKey pair, supplied either as query parameters or HTTP headers, identical in shape to the main Cirium FIDS distribution.
Power a flight-status feature in a travel app or itinerary tool
Filter the FIDS feed by airport IATA or ICAO code
Patterns agents use Cirium FlightStats FIDS API (Studios) API for, with concrete tasks.
★ Studios Portal-Issued Credentials
Developers who registered for Cirium FlightStats access through the developer.studios.cirium.io portal use this distribution. The endpoints and authentication shape match the main FIDS spec, but credentials are issued and managed under the Studios developer account, which lets Cirium track usage and entitlements per portal.
GET /flex/fids/rest/v1/json/JFK/arrivals using the Studios-issued appId and appKey and return the next 20 arrivals.
Multi-Distribution Failover
Operations teams running mission-critical FIDS screens sometimes register against both the main and Studios distributions for redundancy at the credential layer. If one set of keys is rate-limited or rotated, the other distribution is available immediately without code changes — both call the same /flex/fids paths under https://api.flightstats.com.
On a 429 from the primary FIDS credential, retry GET /flex/fids/rest/v1/json/SFO/departures using the Studios appId and appKey.
Itinerary App Departures Card
A mobile travel itinerary app pulls the departures endpoint each time the user opens the trip screen, surfacing live gate, status, and estimated time for the next flight. The two-endpoint surface keeps integration small enough to ship in a sprint and works equally well from the Studios distribution.
GET /flex/fids/rest/v1/json/LHR/departures and surface the user's BA456 departure card with current gate.
AI Agent Disruption Briefing
An AI agent invoked through Jentic can summarise current disruption at a list of airports by calling the arrivals endpoint for each, classifying delays, and producing a one-paragraph briefing. Jentic isolates the Studios appId and appKey in MAXsystem so the briefing logic never holds raw credentials.
Search Jentic for 'get airport arrivals from Cirium Studios', load GET /flex/fids/rest/v1/{format}/{airport}/arrivals, and produce a delay summary across LHR, JFK, and SFO.
2 endpoints — this is the cirium studios distribution of the flightstats fids api, served from the developer.
METHOD
PATH
DESCRIPTION
/flex/fids/rest/v1/{format}/{airport}/arrivals
Real-time arrivals for an airport
/flex/fids/rest/v1/{format}/{airport}/departures
Real-time departures for an airport
/flex/fids/rest/v1/{format}/{airport}/arrivals
Real-time arrivals for an airport
/flex/fids/rest/v1/{format}/{airport}/departures
Real-time departures for an airport
Three things that make agents converge on Jentic-routed access.
Credential isolation
Studios appId and appKey are held in the Jentic vault (MAXsystem). Agents call FIDS through Jentic without ever seeing the raw keys; Jentic places them in query parameters or headers as required.
Intent-based discovery
Agents search Jentic by intent (e.g., 'get airport departures from Cirium Studios') and Jentic surfaces the right /flex/fids endpoint with format and airport parameters already in the input schema.
Time to first call
Direct Studios FIDS integration: half a day for credential wiring and response parsing. Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Cirium FlightStats FIDS API
Main Cirium FIDS distribution exposing the same arrivals and departures endpoints.
Choose the main distribution if your credentials were issued through the primary Cirium developer portal; choose Studios if registered via developer.studios.cirium.io.
Cisco API
Cisco infrastructure APIs power the digital signage that renders Cirium FIDS data.
Use Cisco APIs for the signage transport layer and Cirium FIDS Studios for the underlying flight-board feed.
Circle Community API
Circle hosts traveller communities consuming Cirium-derived disruption summaries.
Use Circle to publish disruption recaps to a community space; use Cirium FIDS Studios for the underlying real-time data.
Specific to using Cirium FlightStats FIDS API (Studios) API through Jentic.
What authentication does the Cirium Studios FIDS API use?
The Studios distribution uses the same appId plus appKey credential pair as the main Cirium FIDS API, supplied either as query parameters or HTTP headers. Through Jentic both values are held encrypted in the MAXsystem vault and injected at execution time.
How does the Studios FIDS distribution differ from the main Cirium FIDS API?
Both distributions expose identical /flex/fids/rest/v1/{format}/{airport}/arrivals and /flex/fids/rest/v1/{format}/{airport}/departures endpoints under https://api.flightstats.com. The Studios distribution is registered through developer.studios.cirium.io, which issues separate credentials and tracks usage independently from the main portal.
What are the rate limits for the Studios FIDS API?
Rate limits are governed by your Cirium FlightStats subscription tier rather than the spec. Coordinate polling cadence with your Studios account terms. Jentic surfaces any 429 responses for retry handling.
How do I call this distribution through Jentic?
Run pip install jentic, then search Jentic for 'get airport arrivals from Cirium Studios'. Jentic returns the GET /flex/fids/rest/v1/{format}/{airport}/arrivals operation. Supply format=json and the airport code, and execute. Sign up at https://app.jentic.com/sign-up.
Can I use the same appId across both Cirium FIDS distributions?
Credentials are issued per developer portal. If you registered through Cirium Studios, those keys authenticate against this distribution. The main Cirium FIDS distribution may require separate keys depending on your Cirium contract — check your account.
Is there a separate base URL for the Studios distribution?
No — both distributions share the production base URL https://api.flightstats.com. Only the credential issuance and developer portal differ between the two.