Make your first API call in seconds. Copy the code below, replace the API key with your own, and run it.

import requests

resp = requests.post(
    "https://api.timeql.com/api/v1/natal_chart",
    headers={"X-API-Key": "YOUR_KEY"},
    json={
        "name": "test",
        "datetime": "2000-01-01T12:00:00",
        "location": "Tokyo",
    },
)
print(resp.json())
curl -X POST \
  https://api.timeql.com/api/v1/natal_chart \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_KEY" \
  -d '{
    "name": "test",
    "datetime": "2000-01-01T12:00:00",
    "location": "Tokyo"
  }'