Перейти до вмісту

Incarnation Cross

POST
/api/v1/hd/incarnation-cross

Return the Incarnation Cross from birth data (or directly from gate numbers). Includes cross name, type, and theme description.

object
Example
{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
}

Successful calculation

object
ok
boolean
Example
true
data
object
Example
{
"ok": true,
"data": {
"name": "Right Angle Cross of the Vessel of Love",
"type": "Right Angle",
"gates": [
46,
25,
15,
10
],
"lines": [
1,
1,
1,
1
],
"theme": "Physical love and incarnation"
}
}

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"
}
}