Coalescent Chart
curl -X POST https://api.astroway.info/v1/coalescent \ -H "X-Api-Key: aw_live_..." \ -H "Content-Type: application/json" \ -d '{ "input1": { "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.45, "longitude": 30.52 }, "input2": { "date": "1985-11-03", "time": "08:15:00", "timezoneOffset": 2, "latitude": 48.46, "longitude": 35.04 } }'const res = await fetch('https://api.astroway.info/v1/coalescent', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "input1": { "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.45, "longitude": 30.52 }, "input2": { "date": "1985-11-03", "time": "08:15:00", "timezoneOffset": 2, "latitude": 48.46, "longitude": 35.04 } }),});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/coalescent', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ 'input1': { 'date': "1990-05-15", 'time': "14:30:00", 'timezoneOffset': 3, 'latitude': 50.45, 'longitude': 30.52 }, 'input2': { 'date': "1985-11-03", 'time': "08:15:00", 'timezoneOffset': 2, 'latitude': 48.46, 'longitude': 35.04 } },)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('coalescent', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ 'input1' => [ 'date' => '1990-05-15', 'time' => '14:30:00', 'timezoneOffset' => 3, 'latitude' => 50.45, 'longitude' => 30.52, ], 'input2' => [ 'date' => '1985-11-03', 'time' => '08:15:00', 'timezoneOffset' => 2, 'latitude' => 48.46, 'longitude' => 35.04, ], ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);Calculate a coalescent chart: the harmonic chart that resonates most strongly between two charts.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”object
Birth data for a single natal chart. Required: date (YYYY-MM-DD), time (HH:mm:ss), latitude and longitude in decimal degrees. The short forms lat, lon, lng and tz are rejected with 400 INVALID_FIELD; pass the full names. timezoneOffset is hours from UTC and defaults to 0, meaning UTC. city is a display label only: nothing here geocodes it, so it never stands in for coordinates.
object
Hours from UTC at the given moment, not minutes. Fractional zones are hours too: 5.5 for India, 5.75 for Nepal, -3.5 for Newfoundland. Defaults to 0, meaning UTC.
Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either.
Birth data for a single natal chart. Required: date (YYYY-MM-DD), time (HH:mm:ss), latitude and longitude in decimal degrees. The short forms lat, lon, lng and tz are rejected with 400 INVALID_FIELD; pass the full names. timezoneOffset is hours from UTC and defaults to 0, meaning UTC. city is a display label only: nothing here geocodes it, so it never stands in for coordinates.
object
Hours from UTC at the given moment, not minutes. Fractional zones are hours too: 5.5 for India, 5.75 for Nepal, -3.5 for Newfoundland. Defaults to 0, meaning UTC.
Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either.
Example
{ "input1": { "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.45, "longitude": 30.52 }, "input2": { "date": "1985-11-03", "time": "08:15:00", "timezoneOffset": 2, "latitude": 48.46, "longitude": 35.04 }}Responses
Section titled “ Responses ”Successful calculation
object
object
object
object
object
object
object
object
object
object
object
object
Example
{ "ok": true, "data": { "input": { "name": "Coalescent", "date": "1988-01-12", "time": "20:42:21", "timezoneOffset": 0, "latitude": 49.455, "longitude": 32.78, "houseSystem": "P", "city": "" }, "julianDay": 2447173.3627430554, "siderealTime": 4.143720340564857, "planets": [ { "id": 0, "name": "Sun", "longitude": 291.8628868675811, "latitude": -0.0000028637440151347395, "distance": 0.9834909887351447, "speedLong": 1.0189415053560238, "speedLat": -0.00002121736135846728, "speedDist": 0.000051726527845501946, "isRetrograde": false, "declination": -21.667965759608165, "rightAscension": 293.6219800190459 } ], "houses": { "system": "P", "cusps": [ 183.56989077439184 ], "ascendant": 183.56989077439184, "mc": 94.53014803429774, "armc": 94.93580510847286, "vertex": 8.528913145412409, "equatorialAsc": 185.3773944333107, "coAscWK": 190.84824720158213, "coAscMunkasey": 183.92384168726073, "polarAsc": 10.848247201582112 }, "aspects": [ { "planet1": "Sun", "planet2": "Moon", "planet1Id": 0, "planet2Id": 1, "type": { "name": "Square", "i18nKey": "aspect_square", "angle": 90, "orb": 10, "symbol": "□", "isMajor": true, "color": "#cc3333" }, "exactAngle": 83.42445786928107, "orb": 6.5755421307189295, "isApplying": true } ], "houseAspects": [ { "planetName": "Sun", "planetId": 0, "houseIndex": 0, "cuspLongitude": 183.56989077439184, "type": { "name": "Trine", "i18nKey": "aspect_trine", "angle": 120, "orb": 12, "symbol": "△", "isMajor": true, "color": "#3366cc" }, "exactAngle": 108.29299609318926, "orb": 11.70700390681074, "isApplying": true } ], "parallelAspects": [ { "planet1": "Sun", "planet2": "Mercury", "planet1Id": 0, "planet2Id": 2, "type": "parallel", "exactDiff": 0.577241977462382, "orb": 0.577241977462382 } ], "antiscia": [ { "planetId": 0, "planetName": "Sun", "antiscion": 248.1371131324189, "contraAntiscion": 68.1371131324189 } ], "antisciaAspects": [], "chartSect": "nocturnal", "meta": { "engineVersion": "2.10.03", "calculatedAt": "2026-08-23T22:03:43.626Z" } }}Validation error
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
Example
{ "ok": false, "error": { "code": "INVALID_API_KEY", "message": "Invalid API key" }}