Skip to content
AstroWay/api v2.19.0 · docs
all systems operational
UA EN

Quick Start

Five minutes from signup to a full natal chart in JSON.

  1. Sign up at astroway.info

    AstroWay API uses a shared account with the rest of the ecosystem. The free plan gives you 10,000 credits/month with no credit card.

  2. Create a key in the dashboard

    Every key starts with aw_live_ (production) or aw_test_ (sandbox, doesn’t consume credits). Copy the key immediately — it’s shown in plain text only once.

  3. Make your first request

    first-request.sh
    curl -X POST https://api.astroway.info/v1/chart \
    -H "X-Api-Key: aw_live_your_key_here" \
    -H "Content-Type: application/json" \
    -d '{
    "date": "1990-07-14",
    "time": "14:30:00",
    "timezoneOffset": 3,
    "latitude": 50.4501,
    "longitude": 30.5234,
    "houseSystem": "P"
    }'
  4. Read the response

    Response — full JSON with planet positions, house cusps, aspects, and metadata. Abbreviated example:

    {
    "julianDay": 2448087.979166,
    "planets": [
    { "name": "Sun", "longitude": 111.87, "sign": "cancer", "house": 10 },
    { "name": "Moon", "longitude": 87.23, "sign": "gemini", "house": 8 }
    ],
    "houses": {
    "system": "P",
    "cusps": [12.34, 43.21, 72.56, 100.12, ...],
    "ascendant": 12.34,
    "mc": 280.12
    },
    "aspects": [
    { "planet1": "Sun", "planet2": "Moon", "type": "sextile", "orb": 1.36, "applying": true }
    ]
    }

    Response headers:

    X-Credits-Used: 20
    X-Credits-Remaining: 4980
    X-Credits-Reset: 2026-05-01T00:00:00Z
    X-Request-Id: 01HXY2A7ZM...
  5. Check your balance

    Dashboard shows real-time usage: api.astroway.info/dashboard. Or via API:

    Terminal window
    curl https://api.astroway.info/v1/keys/usage \
    -H "X-Api-Key: aw_live_your_key_here"
Was this helpful?
Suggest an edit

Last updated: