Day-master strength
POST
/bazi/strength
curl -X POST https://api.astroway.info/v1/bazi/strength \ -H "X-Api-Key: aw_live_..." \ -H "Content-Type: application/json" \ -d '{ "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 8 }'const res = await fetch('https://api.astroway.info/v1/bazi/strength', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 8 }),});const { ok, data, error } = await res.json();if (!ok) throw new Error(error.message);console.log(data);import os, requests
r = requests.post( 'https://api.astroway.info/v1/bazi/strength', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ 'date': "1990-05-15", 'time': "14:30:00", 'timezoneOffset': 8 },)result = r.json()if not result['ok']: raise RuntimeError(result['error']['message'])print(result['data'])<?phpuse GuzzleHttp\Client;
$client = new Client(['base_uri' => 'https://api.astroway.info/v1/']);$r = $client->post('bazi/strength', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ 'date' => '1990-05-15', 'time' => '14:30:00', 'timezoneOffset' => 8, ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);The support-and-suppress reading over the weighted hidden-stem count, with the three classical criteria (season, root, allies) reported unweighted and the favourable elements that follow. The caveat names both limits: the month is counted like any other branch, and the cut points are this API’s convention.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
date required
string
time
string
timezoneOffset
number
longitude
number
trueSolarTime
boolean
stageSchool
string
includeFullTable
boolean
language
string
Example
{ "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 8}Responses
Section titled “ Responses ”Successful calculation
Media type application/json
object
ok
boolean
data
object
solarYear
number
pillars
Array<object>
object
name
string
stem
string
branch
string
pillar
string
dayMaster
object
stem
string
element
string
elementName
string
polarity
string
strength
object
framework
string
supportScore
number
drainScore
number
supportRatio
number
verdict
string
hasSeason
boolean
hasRoot
boolean
hasAllies
boolean
favourableElements
Array<string>
unfavourableElements
Array<string>
caveat
string
favourableElementNames
Array<string>
unfavourableElementNames
Array<string>
notes
Array
methodology
string
source
string
disclaimer
string
Example
{ "ok": true, "data": { "solarYear": 1990, "pillars": [ { "name": "year", "stem": "Geng", "branch": "Wu", "pillar": "Geng-Wu" }, { "name": "month", "stem": "Xin", "branch": "Si", "pillar": "Xin-Si" }, { "name": "day", "stem": "Geng", "branch": "Chen", "pillar": "Geng-Chen" }, { "name": "hour", "stem": "Gui", "branch": "Wei", "pillar": "Gui-Wei" } ], "dayMaster": { "stem": "Geng", "element": "Metal", "elementName": "Метал", "polarity": "Ян" }, "strength": { "framework": "扶抑 support-and-suppress", "supportScore": 3.9, "drainScore": 3.1, "supportRatio": 0.557, "verdict": "strong", "hasSeason": false, "hasRoot": true, "hasAllies": true, "favourableElements": [ "Water", "Wood", "Fire" ], "unfavourableElements": [ "Earth", "Metal" ], "caveat": "One framework of several, and the thresholds are ours. 扶抑 weighs support against drain; 調候, 通關, 病藥 and 專旺 read the same chart by other rules and can reach the opposite verdict, and a chart near the boundary is exactly where they part. Two limits worth stating plainly: the ratio counts the month branch exactly like the other three, where the tradition weighs the month above all, and the 0.55 / 0.45 cut points are a convention of this API rather than a canonical rule. The three classical criteria are reported unweighted beside the ratio, so a reader who weighs the month can reach their own verdict from the same inputs.", "favourableElementNames": [ "Вода", "Дерево", "Вогонь" ], "unfavourableElementNames": [ "Земля", "Метал" ] }, "notes": [], "methodology": "扶抑 support-and-suppress over the weighted hidden-stem count. Everything producing or sharing the day master supports it; everything else drains it. The three classical criteria (得令 season, 得地 root, 得勢 allies) are reported unweighted beside the ratio so a reader can apply their own weighting.", "source": "子平真詮 (Shen Xiaozhan, Qing), public domain", "disclaimer": "BaZi pillars use the canonical 60-jiazi cycle, anchored at 1990-01-01 = Bing-Yin. Year and month boundaries are the exact Lichun and 節 instants from the ephemeris, stated in China Standard Time; pass time and timezoneOffset for births near a boundary. Day and hour follow the birthplace clock, with the day rolling at 23:00 local." }}Validation error
Media type application/json
Example
{ "ok": false, "error": { "code": "INVALID_INPUT", "message": "Validation failed: date: Date must be YYYY-MM-DD", "details": [ { "path": "date", "message": "Date must be YYYY-MM-DD" } ] }}Missing or invalid API key
Media type application/json
Example
{ "ok": false, "error": { "code": "INVALID_API_KEY", "message": "Invalid API key" }} Корисно?
Дякуємо за фідбек.