Quickstart
Five minutes flat.
Sign-up to your first natal chart, in three steps. No card on the free tier. Every endpoint reachable from the first key.
01
Get a key
Sign in at studio.insightsbyomkar.com/account/api-keys and click Mint key. Free tier ships with the key — no card, no quota gate, every endpoint is reachable from the moment you copy the secret.
export KRIYA_API_KEY="sk_live_…"
02
Install an SDK
Three languages, one keystroke each. Zero runtime dependencies — every SDK ships only the platform fetch / stdlib HTTP. Or skip the SDK entirely and call the raw REST endpoints; curl is a first-class client.
# TypeScript npm install kriya-astrology
# Python pip install kriya-astrology
# Go go get github.com/omkarjaliparthi/kriya-go/kriya
03
Make the call
Datetimes must include an explicit timezone — Z or ±HH:mm. Naive local times are rejected; birth-time ambiguity is the #1 source of wrong charts.
curl -X POST https://kriya.insightsbyomkar.com/api/v1/chart/natal \ -H 'content-type: application/json' \ -H 'x-api-key: '$KRIYA_API_KEY \ -d '{ "datetime": "1990-06-15T12:00:00Z", "latitude": 19.076, "longitude": 72.8777, "houseSystem": "placidus" }'
Next
Where to go from here.
Three doors.
109 endpoints, with request/response schemas, examples, and rate-limit semantics for each.
Go →See the accuracy dataWorst-case residuals against JPL Horizons, the Moon-ceiling discussion, and the published source list.
Go →Pick a tierFree / Kriya Pro / Kriya Max, plus the Dev bundle for cross-product builders.
Go →