Tong Shu date selection
POST
/chinese/tong-shu/select
curl -X POST https://api.astroway.info/v1/chinese/tong-shu/select \ -H "X-Api-Key: aw_live_..." \ -H "Content-Type: application/json" \ -d '{ "from": "2026-09-01", "to": "2026-12-31", "activity": "marriage", "avoidClashWith": "Rat" }'const res = await fetch('https://api.astroway.info/v1/chinese/tong-shu/select', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "from": "2026-09-01", "to": "2026-12-31", "activity": "marriage", "avoidClashWith": "Rat" }),});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/chinese/tong-shu/select', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ 'from': "2026-09-01", 'to': "2026-12-31", 'activity': "marriage", 'avoidClashWith': "Rat" },)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('chinese/tong-shu/select', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ 'from' => '2026-09-01', 'to' => '2026-12-31', 'activity' => 'marriage', 'avoidClashWith' => 'Rat', ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);Walk a date range and return the days the almanac endorses for one activity, each with the officer that decided it. Optionally drop the days that clash a person’s animal. Range capped at 366 days and a longer one is refused, not truncated.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
from required
string
to required
string
activity required
string
avoidClashWith
string
includeNeutral
boolean
Example
{ "from": "2026-09-01", "to": "2026-12-31", "activity": "marriage", "avoidClashWith": "Rat"}Responses
Section titled “ Responses ”Successful calculation
Media type application/json
object
ok
boolean
data
object
activity
string
scanned
number
matched
number
dropped
object
byRegister
number
byClash
number
days
Array<object>
object
date
string
verdict
string
dayPillar
string
officer
object
chinese
string
name
string
mansion
object
chinese
string
name
string
clashesWith
string
Example
{ "ok": true, "data": { "activity": "marriage", "scanned": 122, "matched": 24, "dropped": { "byRegister": 88, "byClash": 10 }, "days": [ { "date": "2026-09-12", "verdict": "suitable", "dayPillar": "Ren-Wu", "officer": { "chinese": "成", "name": "Success" }, "mansion": { "chinese": "井", "name": "Well" }, "clashesWith": "Rat" } ] }}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" }} Корисно?
Дякуємо за фідбек.