Skip to content

Gematria

The Gematria endpoint converts any text into four numerological systems: 1. Ordinal โ€“ A=1, B=2, ..., Z=26 2. Reverse Ordinal โ€“ A=26, B=25, ..., Z=1 3. Pythagorean โ€“ A=1, B=2, ..., I=9, J=1, ..., Z=8 4. Standard Hebrew โ€“ ื=1, ื‘=2, ..., ืช=400 (Hebrew letters only)

Also includes hidden meaning based on ordinal value.

Case-insensitive โ€“ non-alphabetic characters ignored.


Endpoint

Method Path
GET https://the-numerology-api.p.rapidapi.com/gematria
POST https://the-numerology-api.p.rapidapi.com/gematria

Note: POST uses same path as GET โ€” no /post suffix.


Required Headers

x-rapidapi-key: YOUR_RAPIDAPI_KEY
x-rapidapi-host: the-numerology-api.p.rapidapi.com
Content-Type: application/json   (POST only)

Get your key from RapidAPI.


Parameters

Param Type Required Description
text string Yes Any text (e.g., "Hello there", "Love").

Only alphabetic characters used.
Hebrew Gematria: Only Hebrew letters (ืโ€“ืช) count.


Example Requests

GET Request

curl --request GET \
  --url "https://the-numerology-api.p.rapidapi.com/gematria?text=Hello%20there" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com"

POST Request (JSON Body)

curl --request POST \
  --url "https://the-numerology-api.p.rapidapi.com/gematria" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
  --header "Content-Type: application/json" \
  --data '{
    "text": "ืฉืœื•ื ืขื•ืœื"
  }'

Response Example

{
  "text": "Hello there",
  "ordinal_gematria": 108,
  "reverse_ordinal_gematria": 162,
  "pythagorean_gematria": 54,
  "standard_hebrew_gematria": 0,
  "ordinal_hidden_meaning": "No specific hidden meaning found"
}

Gematria Systems

System Mapping
Ordinal A=1, B=2, ..., Z=26
Reverse Ordinal A=26, B=25, ..., Z=1
Pythagorean A=1, B=2, ..., I=9, J=1, ..., Z=8
Hebrew ื=1, ื‘=2, ..., ื›=20, ืœ=30, ..., ืช=400

Hidden Meaning: Based on ordinal value โ†’ interpret_gematria() lookup.


Calculation Example

"Hello there"
โ†’ letters: H E L L O T H E R E
โ†’ Ordinal: 8+5+12+12+15+20+8+5+18+5 = 108
โ†’ Reverse: 19+22+15+15+12+7+19+22+9+22 = 162
โ†’ Pythagorean: 8+5+3+3+6+2+8+5+9+5 = 54
โ†’ Hebrew: 0 (no Hebrew letters)

View on RapidAPI


Note

  • Input: Any string โ€” spaces, punctuation, numbers ignored.
  • Case-insensitive โ€” all converted to uppercase.
  • Hebrew Support: Only valid Hebrew Unicode letters (ืโ€“ืช).
  • Hidden Meaning:
  • Based on ordinal_gematria
  • Returns "No specific hidden meaning found" if not in lookup
  • Use Case:
  • Sacred name analysis
  • Mystical text decoding
  • Spiritual branding
  • Biblical/Kabbalistic studies