1月1日〜2月3日生まれは、立春を基準に前年として本命星を算出します。
例: ①お名前(仮名可) ②お相手の名前(仮名可) ③関係性 ④今の状況 ⑤最後に連絡した時期 ⑥本当はどうなりたいか — を書くと精度が上がります。
| 日時 | 内容 | 増減 |
|---|
| ラベル | 作成日 | 識別子 |
|---|
# 残高(無料)
curl "https://uranai-api.pages.dev/api/v1/balance" \
-H "Authorization: Bearer uk_あなたのキー"
# 日運(1クレジット)
curl -X POST "https://uranai-api.pages.dev/api/v1/fortune" \
-H "Authorization: Bearer uk_あなたのキー" \
-H "Content-Type: application/json" \
-d '{"style":"tarot","sign":"cancer"}'
# style: astro | spiritual | tarot
# sign: aries..pisces または 牡羊座..魚座
# 返り値: {date, style, sign, text, spent, balance}
# 個別鑑定(3クレジット)
curl -X POST "https://uranai-api.pages.dev/api/v1/consult" \
-H "Authorization: Bearer uk_あなたのキー" \
-H "Content-Type: application/json" \
-d '{"message":"仕事を変えるべきか悩んでいます。今後の向き合い方を見てください。"}'
# 多種占術(各2クレジット)
curl -X POST "https://uranai-api.pages.dev/api/v1/divine" \
-H "Authorization: Bearer uk_あなたのキー" \
-H "Content-Type: application/json" \
-d '{"kind":"numerology","params":{"birthdate":"1990-05-15"}}'
# divine kind:
# match {sign1, sign2, blood1?, blood2?, relation?}
# tarot3 {question?}
# numerology {birthdate:"YYYY-MM-DD"}
# kyusei {birthdate:"YYYY-MM-DD"}
# dream {dream:"10〜1000文字"}
# divine返り値: {ok, kind, text, meta, spent, balance}
# エラー: invalid_api_key / invalid_params / insufficient_credits /
# generation_failed / rate_limited