Destiny Matrix: Ladini Method
curl -X POST https://api.astroway.info/v1/destiny-matrix/ladini \ -H "X-Api-Key: aw_live_..." \ -H "Content-Type: application/json" \ -d '{ "date": "1990-05-15" }'const res = await fetch('https://api.astroway.info/v1/destiny-matrix/ladini', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "date": "1990-05-15" }),});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/destiny-matrix/ladini', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ 'date': "1990-05-15" },)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('destiny-matrix/ladini', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ 'date' => '1990-05-15', ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);Calculate the full 22-position Destiny Matrix per Natalia Ladini’s method from birth date. Returns centre arcanum, body positions (day/month/year/centre), soul positions, karmic and resource arcana with full meaning structure for each.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Comma-separated dotted paths, relative to data, to keep in the response. A path is applied to every element of an array, so planets.name means the name of each planet. Paths that match nothing come back in _fields_unmatched; a list where nothing matches at all is a 400, because an empty object would be a confident wrong answer.
Example
planets.name,planets.longitudeRound every non-integer number in the response to this many decimal places. Integers are left alone, because an id is not a measurement. Ecliptic longitudes ship with fourteen decimals by default; 2 is about a tenth of an arcminute.
Example
4Request Body required
Section titled “Request Body required ”object
Example
{ "date": "1990-05-15"}Responses
Section titled “ Responses ”Successful calculation
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
object
Example
{ "ok": true, "data": { "method": "ladini", "disclaimer": "Single-author method (Natalia Ladini, CIS market). Not historically attested.", "date": "1990-05-15", "centre": { "number": 17, "arcanum": { "number": 17, "name": "The Star", "archetype": "visionary", "positiveSide": "hope, inspiration, vision, healing", "negativeSide": "despair, lost faith, disillusion", "taskOfSoul": "hold hope through dark times", "resourceOffered": "access to vision and healing" } }, "pointA": { "number": 15, "arcanum": { "number": 15, "name": "The Devil", "archetype": "shadow", "positiveSide": "integration of shadow, sexual force, embodiment", "negativeSide": "addiction, materialism, bondage", "taskOfSoul": "face and integrate the shadow", "resourceOffered": "access to vital and shadow energy" } }, "pointB": { "number": 5, "arcanum": { "number": 5, "name": "The Hierophant", "archetype": "transmitter", "positiveSide": "spiritual teaching, mentorship, sacred tradition", "negativeSide": "dogma, control through belief, conformity", "taskOfSoul": "transmit timeless wisdom in modern form", "resourceOffered": "connection to lineage, teaching gift" } }, "pointC": { "number": 19, "arcanum": { "number": 19, "name": "The Sun", "archetype": "illuminator", "positiveSide": "joy, vitality, success, clarity", "negativeSide": "inflation, burnout, false success", "taskOfSoul": "shine authentic light", "resourceOffered": "access to vital joy" } }, "skyAxis": { "number": 20, "arcanum": { "number": 20, "name": "Judgement", "archetype": "awakener", "positiveSide": "rebirth, calling, awakening to mission", "negativeSide": "self-judgement, ignored calling", "taskOfSoul": "answer the inner call", "resourceOffered": "access to rebirth" } }, "earthAxis": { "number": 12, "arcanum": { "number": 12, "name": "The Hanged Man", "archetype": "surrenderer", "positiveSide": "sacred sacrifice, new perspective, surrender", "negativeSide": "martyrdom, paralysis, victim", "taskOfSoul": "release for new sight", "resourceOffered": "capacity for conscious sacrifice" } }, "moneyLineNode": { "number": 12, "arcanum": { "number": 12, "name": "The Hanged Man", "archetype": "surrenderer", "positiveSide": "sacred sacrifice, new perspective, surrender", "negativeSide": "martyrdom, paralysis, victim", "taskOfSoul": "release for new sight", "resourceOffered": "capacity for conscious sacrifice" } }, "loveLineNode": { "number": 22, "arcanum": { "number": 22, "name": "The Fool", "archetype": "innocent", "positiveSide": "beginner mind, leap of faith, freedom from past", "negativeSide": "naivety, foolishness, repeated lessons", "taskOfSoul": "walk path with beginner heart", "resourceOffered": "capacity for fresh beginnings" } }, "karmicTailSum": { "number": 12, "arcanum": { "number": 12, "name": "The Hanged Man", "archetype": "surrenderer", "positiveSide": "sacred sacrifice, new perspective, surrender", "negativeSide": "martyrdom, paralysis, victim", "taskOfSoul": "release for new sight", "resourceOffered": "capacity for conscious sacrifice" } } }}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" }}