/v1/search
Search by name with owner / type / orbit filters
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/satellites-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/satellites-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/satellites-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 4,
"limit": 20,
"query": "hubble",
"total": 4,
"offset": 0,
"filters": {
"type": null,
"owner": null,
"in_orbit": null
},
"results": [
{
"name": "HUBBLE 6",
"type": "payload",
"orbit": {
"apogee_km": 587,
"perigee_km": 585,
"period_min": 96.4,
"inclination_deg": 97.77
},
"owner": "US",
"status": "operational",
"in_orbit": true,
"norad_id": 64562,
"decay_date": null,
"owner_name": "United States",
"launch_date": "2025-06-23",
"launch_site": "AFWTR",
"intl_designator": "2025-135AL"
},
{
"name": "LEMUR-2-HUBBLE-4",
"type": "payload",
"orbit": {
"apogee_km": 590,
"perigee_km": 586,
"period_min": 96.44,
"inclination_deg": 97.77
},
"owner": "US",
"status": "operational",
"in_orbit": true,
"norad_id": 64565,
"decay_date": null,
"owner_name": "United States",
"launch_date": "2025-06-23",
"launch_site": "AFWTR",
"intl_designator": "2025-135AP"
},
{
"name": "HUBBLE 7",
"type": "payload",
"orbit": {
"apogee_km": 589,
"perigee_km": 583,
"period_min": 96.4,
"inclination_deg": 97.77
},
"owner": "US",
"status": "operational",
"in_orbit": true,
"norad_id": 64592,
"decay_date": null,
"owner_name": "United States",
"launch_date": "2025-06-23",
"launch_site": "AFWTR",
"intl_designator": "2025-135BS"
},
{
"name": "LEMUR-2-HUBBLE-5",
"type": "payload",
"orbit": {
"apogee_km": 590,
"perigee_km": 581,
"period_min": 96.38,
"inclination_deg": 97.77
},
"owner": "US",
"status": "operational",
"in_orbit": true,
"norad_id": 64840,
"decay_date": null,
"owner_name": "United States",
"launch_date": "2025-06-23",
"launch_site": "AFWTR",
"intl_designator": "2025-135BT"
}
]
},
"meta": {
"timestamp": "2026-05-31
…