Skip to main content
POST
/
api
/
opensky
/
tracks
/opensky/tracks
curl --request POST \
  --url https://api.anysite.io/api/opensky/tracks \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "icao24": "<string>",
  "timeout": 300
}
'
[
  {
    "icao24": "<string>",
    "@type": "@opensky_track",
    "callsign": "<string>",
    "start_time": 123,
    "end_time": 123,
    "path": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
icao24
string
required

Aircraft ICAO 24-bit transponder address (lowercase hex)

Required string length: 6
Example:

"3c6444"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

icao24
string
required
@type
string
default:@opensky_track
callsign
string | null
start_time
integer | null
end_time
integer | null
path
OpenskyTrackWaypoint · object[]