Airline aircraft
curl --request GET \
--url https://data.flightportrait.com/v1/airlines/{icao}/airframesimport requests
url = "https://data.flightportrait.com/v1/airlines/{icao}/airframes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data.flightportrait.com/v1/airlines/{icao}/airframes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data.flightportrait.com/v1/airlines/{icao}/airframes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data.flightportrait.com/v1/airlines/{icao}/airframes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data.flightportrait.com/v1/airlines/{icao}/airframes")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.flightportrait.com/v1/airlines/{icao}/airframes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"icao": "TVS",
"as_of": "2026-09-22",
"current_days": 60,
"airframes": [
{
"hex": "49d283",
"reg": "OK-TVY",
"type": "B738",
"country": "CZ",
"since": "2026-05-08",
"since_first_seen": false,
"last_seen": "2026-09-21",
"airlines": 3,
"notable": 0
}
]
}{
"error": "<string>",
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"error": "rate_limited",
"detail": "slow down"
}Reference
Airline aircraft
The aircraft the network currently observes flying this airline’s callsigns, from the airframe lifetime record: an airframe counts when its latest airline stint is this airline’s and it was seen in the record’s last 60 days. Per aircraft: hex, reg, type, country (address block), built_year (registry, else tar1090), msn, since (start of the stint; since_first_seen true when that is simply where the network’s view of the airframe begins), last_seen, airlines (distinct airlines the record saw it fly for) and notable (public incident reports and squawks). Observation, not a published fleet list. Rate: 300 per 600 s (bucket refdata). Cache: 1 h edge.
GET
/
v1
/
airlines
/
{icao}
/
airframes
Airline aircraft
curl --request GET \
--url https://data.flightportrait.com/v1/airlines/{icao}/airframesimport requests
url = "https://data.flightportrait.com/v1/airlines/{icao}/airframes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data.flightportrait.com/v1/airlines/{icao}/airframes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data.flightportrait.com/v1/airlines/{icao}/airframes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data.flightportrait.com/v1/airlines/{icao}/airframes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data.flightportrait.com/v1/airlines/{icao}/airframes")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.flightportrait.com/v1/airlines/{icao}/airframes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"icao": "TVS",
"as_of": "2026-09-22",
"current_days": 60,
"airframes": [
{
"hex": "49d283",
"reg": "OK-TVY",
"type": "B738",
"country": "CZ",
"since": "2026-05-08",
"since_first_seen": false,
"last_seen": "2026-09-21",
"airlines": 3,
"notable": 0
}
]
}{
"error": "<string>",
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"error": "rate_limited",
"detail": "slow down"
}Path Parameters
Airline ICAO code.
Response
OK