AstroWay/api v2.204.2 · vi
tất cả hệ thống hoạt động bình thường

Free Astrology API: Which One Has the Best Free Tier in 2026?

A side-by-side of free tiers across the major astrology APIs - credits, request caps, card requirements - and how much you can actually build for free.

“Free astrology API” usually means one of three things: a generous monthly credit grant, a hard daily request cap, or a time-limited trial that turns into a paywall. They are not the same, and the difference decides whether you can ship a side project without a card. Here’s how the main options actually compare.

AstroWay’s free tier is 10,000 credits per month, no credit card. A full natal chart is 20 credits, so that’s roughly 500 charts a month before you pay anything - the most generous standing free tier among the commercial astrology APIs as of 2026.

APIFree allowanceCard required?Notes
AstroWay10,000 credits/mo (~500 natal charts)NoStanding monthly grant across all 761 endpoints
Prokerala~2,500 creditsNoVedic-focused; credit costs vary widely per endpoint
FreeAstrologyAPI~50 requests/dayNoHard daily cap, no SDK
DivineAPI14-day trialYes (usually)Trial, not a standing free tier
VedikaNo live free tier–Paid from the start

Competitor figures are estimates from public pricing pages (June 2026) and change; check each provider before you commit.

”Credits” vs “requests” - read the unit

Section titled “”Credits” vs “requests” - read the unit”

A daily request cap (FreeAstrologyAPI’s ~50/day) is predictable but small, and a single complex call counts the same as a trivial one. Credit grants (AstroWay, Prokerala) price by what the endpoint computes - a planet lookup is cheap, a rectification is not - so a credit tier stretches further for a mix of light calls. The catch with some credit systems (Prokerala’s is the usual example) is that a few heavy endpoints can burn a month’s budget fast, which makes planning hard. AstroWay’s per-endpoint costs are flatter and published on the pricing page.

At 20 credits per natal chart, 10,000 credits is about 500 charts a month. In practice that covers:

  • a personal project or MVP serving real users before any revenue,
  • a daily-horoscope widget caching twelve sign-based calls per day (a few credits each),
  • local development and CI without touching a paid key.

When you outgrow it, the first paid tier starts at $5/mo.

Terminal window
# Python
pip install astroway
// TypeScript
npm install @astroway/sdk

Generate a key on the dashboard - no card - and the free credits are active immediately.

MakSeong · AstroWay

Tôi làm AstroWay API: gói Swiss Ephemeris vào REST thuần và viết về những chi tiết nhàm chán nhưng thực sự quan trọng.

// xây dựng trên nền tảng này

Chính Swiss Ephemeris giống như trong Solar Fire - chỉ trong 4 dòng code.

Khóa API miễn phí không cần thẻ. 5.000 lượt gọi/tháng trước lần thanh toán đầu tiên.

Thêm từ blog tất cả bài viết →

Ephemeris 2026-07-19

Cách chúng tôi giữ độ chính xác dưới kiểm soát: CI vs swetest và NASA

Độ chính xác trong astro-API dễ bị suy giảm chỉ sau một lần refactor ephemeris. Chúng tôi phân tích bảo vệ: một lõi Swiss Ephemeris cho ứng dụng và API, hàng trăm snapshot đóng băng trên bản đồ chuẩn và việc tam giác mỗi PR so với swetest CGI, Kerykeion, Prokerala và catalogue of NASA eclipses.

Engineering 2026-07-15

Ba SDK chính thức: TypeScript, Python, PHP thay vì curl thô

HTTP thô hoạt động, nhưng client có kiểu dữ liệu tiết kiệm giờ: tự động hoàn thiện đường dẫn, kiểu yêu cầu và phản hồi, retry tích hợp cho 408/409/429/5xx và Stainless-style hệ thống lỗi. Xem xét ba SDK chính thức - @astroway/sdk (npm), astroway (PyPI), astroway/sdk (Packagist) - và cách chúng được tạo từ một OpenAPI contract.

Engineering 2026-06-05

Horoscope API Tutorial: Build a Daily Horoscope Feature

Add daily, weekly and monthly horoscopes to your app via API - sign-based text vs transit-based personalization - with TypeScript and Python code.