Free overview of current global flight activity - sample data to try before buying
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get all aircraft in a geographic bounding box. Returns real-time positions, altitudes, speeds, and callsigns.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"lamin": {
"type": "number",
"minimum": -90,
"maximum": 90,
"description": "Latitude minimum (south boundary)"
},
"lamax": {
"type": "number",
"minimum": -90,
"maximum": 90,
"description": "Latitude maximum (north boundary)"
},
"lomin": {
"type": "number",
"minimum": -180,
"maximum": 180,
"description": "Longitude minimum (west boundary)"
},
"lomax": {
"type": "number",
"minimum": -180,
"maximum": 180,
"description": "Longitude maximum (east boundary)"
},
"limit": {
"default": 100,
"description": "Max results to return",
"type": "number"
}
},
"required": [
"lamin",
"lamax",
"lomin",
"lomax",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/region/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"lamin": -90,
"lamax": -90,
"lomin": -180,
"lomax": -180,
"limit": 0
}
}
'
Track specific aircraft by ICAO24 hex address. Get current position and status.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"icao24": {
"type": "string",
"minLength": 6,
"maxLength": 6,
"description": "ICAO24 hex address of aircraft (e.g., \"a101c3\")"
}
},
"required": [
"icao24"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/track/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"icao24": "<ICAO24 hex address of aircraft (e.g., \"a101c3\")>"
}
}
'
Analyze airspace in a region - traffic by altitude band, speed distribution, and aircraft types.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"lamin": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lamax": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lomin": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"lomax": {
"type": "number",
"minimum": -180,
"maximum": 180
}
},
"required": [
"lamin",
"lamax",
"lomin",
"lomax"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/airspace/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"lamin": -90,
"lamax": -90,
"lomin": -180,
"lomax": -180
}
}
'
Calculate traffic density grid for a region. Returns aircraft count per grid cell.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"lamin": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lamax": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lomin": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"lomax": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"gridSize": {
"default": 4,
"description": "Grid divisions per axis (e.g., 4 = 16 cells)",
"type": "number"
}
},
"required": [
"lamin",
"lamax",
"lomin",
"lomax",
"gridSize"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/density/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"lamin": -90,
"lamax": -90,
"lomin": -180,
"lomax": -180,
"gridSize": 0
}
}
'
Comprehensive airspace report with traffic analysis, altitude bands, speed stats, country breakdown, and density hotspots.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"lamin": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lamax": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lomin": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"lomax": {
"type": "number",
"minimum": -180,
"maximum": 180
}
},
"required": [
"lamin",
"lamax",
"lomin",
"lomax"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"lamin": -90,
"lamax": -90,
"lomin": -180,
"lomax": -180
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://flight-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'