/v1/magnification
Magnification and useful range
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/telescope-api/v1/magnification" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/telescope-api/v1/magnification", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/telescope-api/v1/magnification");
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/magnification",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Magnification = the telescope's focal length ÷ the eyepiece focal length, so a shorter eyepiece magnifies more. Useful magnification runs from about the aperture in mm ÷ 7 (a 7 mm exit pupil, lowest useful) up to roughly 2× the aperture in mm — push past that and the image just gets dim and fuzzy, not more detailed. The true field of view = the eyepiece's apparent field ÷ the magnification, so high power shows a small patch of sky.",
"inputs": {
"aperture_mm": 200,
"apparent_fov_deg": 52,
"scope_focal_length_mm": 1000,
"eyepiece_focal_length_mm": 10
},
"focal_ratio": 5,
"magnification": 100,
"true_field_of_view_deg": 0.52,
"max_useful_magnification": 400,
"min_useful_magnification": 28.6
},
"meta": {
"timestamp": "2026-06-07T08:18:03.768Z",
"request_id": "98ee3446-a6a8-4640-aca2-20c31a399d55"
},
"status": "ok",
"message": "Magnification",
"success": true
}