← Back to Spiritual Living

Numerology Calculator

Numerology analysis and predictions

https://hub.toolweb.in/lifestyle/numerology/

Endpoints

GET /

Root

POST /api/numerology/calculate

Calculate Numerology

Request Body (JSON)

{
  "fullName": "<string>",
  "birthMonth": "<integer>",
  "birthDay": "<integer>",
  "birthYear": "<integer>",
  "system": "<string>",
  "language": "english",
  "sessionId": "<string>",
  "userId": "<string>",
  "timestamp": "<string>"
}
GET /api/numerology/number-meanings

Get Number Meanings

GET /api/numerology/systems

Get Systems

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/lifestyle/numerology/
# Python
import requests
r = requests.get("https://hub.toolweb.in/lifestyle/numerology/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/lifestyle/numerology/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.