🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Numerology Table

The numero_table API returns information related to numerology for a given name, including the name, date, destiny number, radical number, name number, evil numbers, favorite color, favorite day, favorite god, favorite mantra, favorite metal, favorite stone, favorite sub-stone, friendly numbers, neutral numbers, radical number, and radical ruler. The response includes specific values for each of these categories for the given name.
POSThttps://json.astrologyapi.com/v1/numero_table

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi, Marathi - ma, Bengali - bn, Tamil - ta, Telugu - te, Malayalam - ml, Kannada - kn.

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

namestringrequired

Name of the person, eg: John

curl --location 'https://json.astrologyapi.com/v1/numero_table' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "name": "John"
}'
Try it

Runs with sample data — no API key needed

{
  "name": "Demo",
  "date": "6-121-2014",
  "destiny_number": 8,
  "radical_number": 6,
  "name_number": 1,
  "evil_num": "1,8",
  "fav_color": "White",
  "fav_day": "Thursday, Tuesday, Friday",
  "fav_god": "Devi",
  "fav_mantra": "|| Om Shum Shukray Namah ||",
  "fav_metal": "Sillver",
  "fav_stone": "Diamond, Opal",
  "fav_substone": "Zircon, White Sapphire",
  "friendly_num": "4,3,9",
  "neutral_num": "2,5,7",
  "radical_num": "6",
  "radical_ruler": "Venus"
}