/v1/resolution
Resolving power and limiting magnitude
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/telescope-api/v1/resolution" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/telescope-api/v1/resolution", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/telescope-api/v1/resolution");
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/telescope-api/v1/resolution",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Resolving power is set by the aperture alone: the Dawes limit ≈ 116 ÷ aperture(mm) arcseconds is the classic split-a-double-star figure, the Rayleigh limit ≈ 138 ÷ aperture a slightly stricter criterion. Bigger glass resolves finer detail and, gathering more light, also reaches fainter stars — the limiting magnitude ≈ 2.7 + 5·log₁₀(aperture mm). Atmospheric seeing usually caps real resolution around 1 arcsecond regardless of aperture.",
"inputs": {
"aperture_mm": 200
},
"dawes_limit_arcsec": 0.58,
"limiting_magnitude": 14.2,
"rayleigh_limit_arcsec": 0.69
},
"meta": {
"timestamp": "2026-06-07T08:18:03.856Z",
"request_id": "22451984-dc3a-4a03-b49d-6d37fa0722b1"
},
"status": "ok",
"message": "Resolution",
"success": true
}