Aller au contenu
GET /v1/meta

Signs & usage notes

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/zodiac-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}