Vai al contenuto
GET /v1/distance

Distance from time

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/lighttime-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/lighttime-api/v1/distance" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lighttime-api/v1/distance", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lighttime-api/v1/distance");
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/lighttime-api/v1/distance",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Distance light covers d = c·t. One light-year is the distance light travels in a Julian year ≈ 9.461×10¹⁵ m.",
        "inputs": {
            "time": 1,
            "unit": "year"
        },
        "distance": {
            "au": 63241.0770842663,
            "meters": 9460730472580800,
            "parsecs": 0.30660139378555,
            "kilometers": 9460730472580.8,
            "light_years": 1
        },
        "time_seconds": 31557600
    },
    "meta": {
        "timestamp": "2026-06-05T19:50:33.116Z",
        "request_id": "15d76aae-1f39-4414-8910-936da34c7f9b"
    },
    "status": "ok",
    "message": "Distance from time",
    "success": true
}