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

Dream Rave

POST
/api/v1/hd/dream-rave

Calculate the Dream Rave chart: sleep type, active gates in lower centers (Sacral, Solar Plexus, Root), and dream themes.

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": {
"sleepType": "lucid",
"activeGates": [
34,
59,
27,
50,
58,
38,
28,
32
],
"lowerCenterGates": {
"sacral": [
34,
27
],
"solarPlexus": [
59
],
"root": [
58,
38
]
},
"theme": "Processing emotional wave during sleep"
}
}

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