/v1/meta
Signs & usage notes
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/zodiac-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zodiac-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zodiac-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/zodiac-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Zodiac signs. /v1/western = the Western (tropical) sun sign from a date (date=YYYY-MM-DD or month= & day=) with element, quality, ruling planet and compatible signs; /v1/sign = details for a sign by name (e.g. name=leo); /v1/chinese = the Chinese zodiac animal, element and yin/yang from a year or date; /v1/both = Western + Chinese for a full birth date. Runs fully locally.",
"source": "local zodiac engine",
"endpoints": [
"/v1/western",
"/v1/sign",
"/v1/chinese",
"/v1/both",
"/v1/meta"
],
"chinese_signs": [
"Rat",
"Ox",
"Tiger",
"Rabbit",
"Dragon",
"Snake",
"Horse",
"Goat",
"Monkey",
"Rooster",
"Dog",
"Pig"
],
"western_signs": [
"Capricorn",
"Aquarius",
"Pisces",
"Aries",
"Taurus",
"Gemini",
"Cancer",
"Leo",
"Virgo",
"Libra",
"Scorpio",
"Sagittarius"
]
},
"meta": {
"timestamp": "2026-06-01T00:04:25.631Z",
"request_id": "8f659833-fb4e-4485-8a66-b989ba3565a6"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}