Skip to content
GET /v1/owners

Operators / countries with object counts

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/satellites-api

It works. Grab an API key and use it in your project.

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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"
            },
            {
                "
…