Zum Inhalt springen
GET /v1/owners

Operators / countries with object counts

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/satellites-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/satellites-api/v1/owners" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/satellites-api/v1/owners", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/satellites-api/v1/owners");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/satellites-api/v1/owners",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 129,
        "owners": [
            {
                "count": 18386,
                "owner": "US",
                "owner_name": "United States"
            },
            {
                "count": 7912,
                "owner": "CIS",
                "owner_name": "Russia / CIS"
            },
            {
                "count": 2501,
                "owner": "PRC",
                "owner_name": "China"
            },
            {
                "count": 755,
                "owner": "UK",
                "owner_name": "United Kingdom"
            },
            {
                "count": 512,
                "owner": "JPN",
                "owner_name": "Japan"
            },
            {
                "count": 415,
                "owner": "FR",
                "owner_name": "France"
            },
            {
                "count": 240,
                "owner": "IND",
                "owner_name": "India"
            },
            {
                "count": 209,
                "owner": "TBD",
                "owner_name": "Unallocated"
            },
            {
                "count": 143,
                "owner": "GER",
                "owner_name": "Germany"
            },
            {
                "count": 141,
                "owner": "IT",
                "owner_name": "Italy"
            },
            {
                "count": 139,
                "owner": "ESA",
                "owner_name": "European Space Agency"
            },
            {
                "count": 110,
                "owner": "CA",
                "owner_name": "Canada"
            },
            {
                "count": 101,
                "owner": "ITSO",
                "owner_name": "Intelsat"
            },
            {
                "count": 101,
                "owner": "SPN",
                "owner_name": "Spain"
            },
            {
                "count": 84,
                "owner": "GLOB",
                "owner_name": "Globalstar"
            },
            {
                "count": 83,
                "owner": "SKOR",
                "owner_name": "South Korea"
            },
            {
                "count": 72,
                "owner": "AUS",
                "owner_name": "Australia"
            },
            {
                "count": 72,
                "owner": "ARGN",
                "owner_name": "Argentina"
            },
            {
                "count": 69,
                "owner": "SES",
                "owner_name": "SES"
            },
            {
                "count": 67,
                "owner": "ISRA",
                "owner_name": "Israel"
            },
            {
                "count": 62,
                "owner": "EUTE",
                "owner_name": "Eutelsat"
            },
            {
                "count": 60,
                "owner": "ORB",
                "owner_name": "ORBCOMM"
            },
            {
                "
…