/v1/meta
Spec
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/biorhythm-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/biorhythm-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"notes": "Dates are YYYY-MM-DD. Cycles: physical 23 days, emotional 28 days, intellectual 33 days. Biorhythms have no scientific basis — this is an entertainment tool.",
"cycles": {
"physical": 23,
"emotional": 28,
"intellectual": 33
},
"service": "biorhythm-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/range": "Daily biorhythm series over a window (max 60 days).",
"GET /v1/cycles": "Physical/emotional/intellectual percentages and phase for a date.",
"GET /v1/compatibility": "Cycle compatibility between two birthdates."
},
"description": "Biorhythm calculator (for entertainment): physical, emotional and intellectual cycles for a date, a daily series, and the compatibility between two birthdates."
},
"meta": {
"timestamp": "2026-06-05T19:50:32.992Z",
"request_id": "3b95be4b-7b4b-4e92-8d7a-f867ff280fbc"
},
"status": "ok",
"message": "Meta",
"success": true
}