/v1/object
An object by catalogue name, Messier number or common name
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/deepsky-api/v1/object" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deepsky-api/v1/object", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deepsky-api/v1/object");
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/deepsky-api/v1/object",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"ra": "00:42:44.35",
"dec": "+41:16:08.6",
"name": "NGC0224",
"type": "G",
"b_mag": 4.29,
"v_mag": 3.44,
"ra_deg": 10.68479,
"dec_deg": 41.26906,
"messier": "M31",
"type_name": "Galaxy",
"common_name": "Andromeda Galaxy",
"hubble_type": "Sb",
"identifiers": "2MASX J00424433+4116074,IRAS 00400+4059,MCG +07-02-016,PGC 002557,UGC 00454",
"constellation": "And",
"messier_number": 31,
"major_axis_arcmin": 177.83,
"minor_axis_arcmin": 69.66,
"constellation_name": "Andromeda",
"surface_brightness": 23.63
},
"meta": {
"timestamp": "2026-05-31T05:48:02.731Z",
"request_id": "998de67e-d3d0-4c72-9079-2e1c1eac408f"
},
"status": "ok",
"message": "Object retrieved",
"success": true
}