Naar de inhoud
GET /v1/magnification

Magnification and useful range

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/telescope-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

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