/v1/distance
Distance from time
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/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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}