Chinese Horoscope

Introducing our Chinese Horoscope API, your gateway to providing users with personalized insights from the Chinese zodiac. Access daily, weekly, or yearly Chinese horoscope data for all animal signs.

Use translator for other language:

Update translator: https://divineapi.com/translator

en For English

hi For Hindi

pt For Portuguese

fr For French

es For Spanish

ru For Russian

de For German

nl For Dutch

it For Italian

pl For Polish

ar For Arabic

ja For Japanese

zh For Chinese

POST https://astroapi-5.divineapi.com/api/v2/chinese-horoscope

Request Body

NameTypeDescription

api_key*

String

Your API Key (can be found on your Divineapi dashboard)

sign*

String

A zodiac sign. (eg: Tiger)

day*

Integer

date of birth, eg: 13

month*

Integer

month of birth, eg: 04

year*

Integer

year of birth, eg: 2024

tzone*

Float

timezone, eg: 5.5 Timezone List

lan

String

Language en/hi, default en

{
    "success": 1,
    "data": {
        "sign": "Tiger",
        "prediction": {
            "sign": "Tiger",
            "result": "April 13, 2024: Hard work can give you a sense of achievement today. Accept what it is and don't worry about the future. Realistic worries can hinder your ability to discover the best solution. It can be very satisfying to have casual conversations with neighbors. Open to friendships between equals"
        }
    }
}

Take a look at how you might call this method via cURL, NodeJS, JavaScript jQuery AJAX or Python:

curl --location 'https://astroapi-5.divineapi.com/api/v2/chinese-horoscope' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'sign="Tiger"' \
--form 'day="13"' \
--form 'month="04"' \
--form 'year="2024"' \
--form 'tzone="5.5"' \
--form 'lan="en"'

Last updated