/v1/both
Western + Chinese for a full date
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/zodiac-api/v1/both" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zodiac-api/v1/both", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zodiac-api/v1/both");
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/both",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"date": "1990-07-15",
"chinese": {
"sign": "Horse",
"year": 1990,
"traits": [
"energetic",
"independent",
"warm"
],
"element": "Metal",
"yin_yang": "Yang"
},
"western": {
"sign": "Cancer",
"symbol": "♋",
"traits": [
"nurturing",
"loyal",
"emotional",
"protective"
],
"element": "Water",
"quality": "Cardinal",
"polarity": "Negative",
"date_range": "21 Jun – 22 Jul",
"ruling_planet": "Moon",
"compatible_with": [
"Capricorn",
"Pisces",
"Taurus",
"Virgo",
"Scorpio"
]
}
},
"meta": {
"timestamp": "2026-06-01T00:04:25.343Z",
"request_id": "811fa765-e43b-45ee-a3ea-5d3c05b13594"
},
"status": "ok",
"message": "Both signs retrieved",
"success": true
}