Перейти до вмісту
AstroWay/api v2.157.17 · docs
усі системи в нормі

Gematria ciphers

POST
/kabbalah/gematria
request.sh
curl -X POST https://api.astroway.info/v1/kabbalah/gematria \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "text": "שלום" }'

Seven standard ciphers over a Hebrew text: absolute, large, small, ordinal, inclusive, AtBash and AlBam. Vowel points and cantillation are stripped; a final letter counts as its ordinary form in the absolute value and as 500-900 in the large one, and both are returned rather than one being chosen.

Media type application/json
object
text required
string
>= 1 characters <= 500 characters
Example
{
"text": "שלום"
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
input
string
nullable
consonants
string
nullable
letterCount
number
nullable
ciphers
Array<object>
nullable
object
id
string
nullable
hebrew
string
nullable
name
string
nullable
value
number
nullable
note
string
nullable
Example
{
"ok": true,
"data": {
"input": "שלום",
"consonants": "שלום",
"letterCount": 4,
"ciphers": [
{
"id": "hechrachi",
"hebrew": "מספר הכרחי",
"name": "Absolute",
"value": 376,
"note": "..."
},
{
"id": "gadol",
"name": "Large",
"value": 936
},
{
"id": "atbash",
"name": "AtBash",
"value": 216,
"mapped": "בכפי"
}
]
}
}

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"
}
}
Корисно?