/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}