Aller au contenu
GET /v1/owners

Operators / countries with object counts

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/satellites-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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"
            },
            {
                "
…