// industry · Horoscope content sites
API for horoscope content sites
Daily / weekly / monthly forecasts for 12 signs — grounded on real transits. No LLM fabrication, no manual edits.
⏱
<300ms
📰
12 signs × 4 freq
💰
20 credits/text
🌍
4 languages
// 01 / problem
The problem
Horoscope content sites generate text either manually (slow, expensive) or via LLM (hallucinations, generic phrases). You need a third path: automated text grounded on actual ephemerides.
// 02 / solution
How AstroWay solves it
AstroWay reads strong transits of the day and composes a text block: transit → planet pair → archetype → life area. 100K+ readers on astroway.info and app.astroway.info already use this pipeline.
// 03 / endpoints
Endpoints used
- POST /v1/horoscope/daily — sign + date → text
- POST /v1/horoscope/weekly — week range
- POST /v1/horoscope/monthly — month overview
- Cached 24h with no extra charge
// 04 / code sample
TypeScript starter
// Daily for a Sun sign — content site backend (TS SDK in roadmap)
const r = await fetch('https://api.astroway.info/v1/horoscope/daily', {
method: 'POST',
headers: { 'X-Api-Key': process.env.AW_KEY!, 'Content-Type': 'application/json' },
body: JSON.stringify({ sign: 'leo', date: '2026-05-04' }),
});
const { data: daily } = await r.json();
res.send(daily.text); // grounded on real ephemerides, no LLM hallucinations Build a horoscope content sites feature
Generate an API key, hit any of the listed endpoints in 5 minutes. 10,000 credits free.