← Back to Spiritual Living

Birth Chart Analysis

Astrological birth chart generator

https://hub.toolweb.in/lifestyle/birth-chart/

Endpoints

POST /generate-birth-chart

Generate Birth Chart

Request Body (JSON)

{
  "name": "<string>",
  "birth_date": "<string>",
  "birth_time": "<string>",
  "birth_location": "<string>",
  "language": "en"
}
GET /supported-languages

Get Supported Languages

GET /

Root

Quick Start

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

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