Rig Veda
Structured metadata for the hymns of the Rig Veda
Turns the Rig Veda's corpus of Vedic hymns into queryable JSON: which gods are praised, which poets composed the verses, and which metrical patterns they follow. Endpoints slice the material by mandala, deity, poet, meter or category, with an expanded mode for hymn-level detail. It runs on a free Render instance, so the first request after an idle period may cold-start before later calls settle around one second.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://indica-1hwj.onrender.com/rv/v3/meters
{
"meters": {
"Abhisarini": 2,
"Anushtup": 281,
"Ashti": 6,
"Atidhriti": 1,
"Atyashti": 28,
"Brihati": 91
}
}curl "https://indica-1hwj.onrender.com/rv/v3/meters"const res = await fetch("https://indica-1hwj.onrender.com/rv/v3/meters");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://indica-1hwj.onrender.com/rv/v3/meters")
print(res.json())/metersPROBEDStructured metadata for the hymns of the Rig Veda
/meters?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Rig Veda: common questions
Is Rig Veda free to use?
Yes — Rig Veda is a free books & words API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Rig Veda need an API key?
No — Rig Veda needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Rig Veda from the browser?
Yes — Rig Veda returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Rig Veda up right now?
Rig Veda is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.