/v1/range
Daily series
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/biorhythm-api/v1/range" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/biorhythm-api/v1/range", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/biorhythm-api/v1/range");
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/biorhythm-api/v1/range",
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": "Daily biorhythm values over the requested window (max 60 days). Plot each cycle as a sine wave to see the chart.",
"inputs": {
"days": 14,
"start": "2000-02-01",
"birthdate": "2000-01-01"
},
"series": [
{
"date": "2000-02-01",
"physical": 81.7,
"emotional": 62.35,
"days_alive": 31,
"intellectual": -37.17
},
{
"date": "2000-02-02",
"physical": 63.11,
"emotional": 78.18,
"days_alive": 32,
"intellectual": -18.93
},
{
"date": "2000-02-03",
"physical": 39.84,
"emotional": 90.1,
"days_alive": 33,
"intellectual": 0
},
{
"date": "2000-02-04",
"physical": 13.62,
"emotional": 97.49,
"days_alive": 34,
"intellectual": 18.93
},
{
"date": "2000-02-05",
"physical": -13.62,
"emotional": 100,
"days_alive": 35,
"intellectual": 37.17
},
{
"date": "2000-02-06",
"physical": -39.84,
"emotional": 97.49,
"days_alive": 36,
"intellectual": 54.06
},
{
"date": "2000-02-07",
"physical": -63.11,
"emotional": 90.1,
"days_alive": 37,
"intellectual": 69.01
},
{
"date": "2000-02-08",
"physical": -81.7,
"emotional": 78.18,
"days_alive": 38,
"intellectual": 81.46
},
{
"date": "2000-02-09",
"physical": -94.23,
"emotional": 62.35,
"days_alive": 39,
"intellectual": 90.96
},
{
"date": "2000-02-10",
"physical": -99.77,
"emotional": 43.39,
"days_alive": 40,
"intellectual": 97.18
},
{
"date": "2000-02-11",
"physical": -97.91,
"emotional": 22.25,
"days_alive": 41,
"intellectual": 99.89
},
{
"date": "2000-02-12",
"physical": -88.79,
"emotional": 0,
"days_alive": 42,
"intellectual": 98.98
},
{
"date": "2000-02-13",
"physical": -73.08,
"emotional": -22.25,
"days_alive": 43,
"intellectual
…