Skip to content

中国占星術ホロスコープ

出生日に基づいて中国の干支と年間予測を計算します。


中国の干支

出生年に基づいて人物の中国の干支と五行を計算する。

必要なモジュール

chinese-horoscope:calc モジュールが必要です。

bash
curl -X POST "https://api.astroapi.cloud/api/calc/chinese-horoscope" \
  -H "X-Api-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "birthDate": "1990-06-15",
    "language": "en",
    "includeText": true,
    "includeReadableEntities": true
  }'

パラメータ

パラメータ必須説明
birthDatestringはいYYYY-MM-DD 形式の出生日
languagestringいいえテキストコンテンツの言語コード(デフォルト:"en"
includeTextbooleanいいえ解釈テキストを含める(デフォルト:false
includeReadableEntitiesbooleanいいえサインと五行の人間が読めるタイトルを含める(デフォルト:false

レスポンス

json
{
    "data": {
        "sign": "horse",
        "element": "metal",
        "year": 1990,
        "signTitle": "Horse",
        "elementTitle": "Metal",
        "text": "People born in the Year of the Horse are energetic, active, and enjoy being in a crowd. They are quick to learn and love adventure..."
    }
}

レスポンスフィールド

フィールド説明
signstring中国の十二支動物
elementstring関連する五行(woodfireearthmetalwater
yearnumber計算に使用した出生年
signTitlestring | null人間が読めるサイン名(includeReadableEntities: true の場合のみ)
elementTitlestring | null人間が読めるエレメント名(includeReadableEntities: true の場合のみ)
textstring | null解釈テキスト(includeText: true の場合のみ)

中国の干支

12年サイクルの中国十二支:

干支サイクル年(例)
rat1948、1960、1972、1984、1996、2008、2020
ox1949、1961、1973、1985、1997、2009、2021
tiger1950、1962、1974、1986、1998、2010、2022
rabbit1951、1963、1975、1987、1999、2011、2023
dragon1952、1964、1976、1988、2000、2012、2024
snake1953、1965、1977、1989、2001、2013、2025
horse1954、1966、1978、1990、2002、2014、2026
goat1955、1967、1979、1991、2003、2015、2027
monkey1956、1968、1980、1992、2004、2016、2028
rooster1957、1969、1981、1993、2005、2017、2029
dog1958、1970、1982、1994、2006、2018、2030
pig1959、1971、1983、1995、2007、2019、2031

中国の旧正月

中国の干支の年は1月1日ではなく、中国の旧正月(1月下旬または2月上旬)に始まります。1月または2月初旬の誕生日は前年の干支に属する場合があります。


中国占星術年間予測

中国の干支に基づいて人物の年間予測を計算する。

必要なモジュール

chinese-forecast:calc モジュールが必要です。

bash
curl -X POST "https://api.astroapi.cloud/api/calc/chinese-forecast" \
  -H "X-Api-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "birthDate": "1990-06-15",
    "forecastYear": 2024,
    "language": "en",
    "includeText": true,
    "includeReadableEntities": true
  }'

パラメータ

パラメータ必須説明
birthDatestringはいYYYY-MM-DD 形式の出生日
forecastYearnumberいいえ予測を生成する年(デフォルト:現在の年)
languagestringいいえテキストコンテンツの言語コード(デフォルト:"en"
includeTextbooleanいいえ解釈テキストを含める(デフォルト:false
includeReadableEntitiesbooleanいいえ人間が読めるサインタイトルを含める(デフォルト:false

レスポンス

json
{
    "data": {
        "sign": "horse",
        "year": 2024,
        "signTitle": "Horse",
        "text": "The Year of the Dragon 2024 brings dynamic energy to the Horse. Your natural charisma is amplified this year, drawing new opportunities and connections into your life...",
        "categories": {
            "Love": "This year brings exciting romantic possibilities. Single Horses may meet someone special through social activities. Those in relationships will find new depth and understanding...",
            "Career": "Professional growth is highlighted in 2024. Your innovative ideas gain recognition, and a promotion or new opportunity may present itself mid-year...",
            "Health": "Pay attention to stress levels and ensure adequate rest. Regular exercise and a balanced diet will help maintain your characteristically high energy levels...",
            "Finance": "Financial prospects improve steadily through 2024. Avoid impulsive spending in the first quarter, and by mid-year you will be in a stronger position to invest..."
        }
    }
}

レスポンスフィールド

フィールド説明
signstring中国の十二支動物
yearnumber予測年
signTitlestring | null人間が読めるサイン名(includeReadableEntities: true の場合のみ)
textstring | null一般的な年間予測テキスト(includeText: true の場合のみ)
categoriesobject生活分野別に分けられた予測
categories.Lovestring恋愛・人間関係の予測
categories.Careerstring仕事・キャリアの予測
categories.Healthstring健康・ウェルビーイングの予測
categories.Financestring財務予測

AstroAPI Documentation