Sacred Atlas
For developers, scholars, educators

The Sacred Atlas v1 Data API.

Every parallel, theme, figure, place, and glossary term we ship is also published as a plain JSON file. No keys, no rate limits, no SDK. CC BY 4.0 — credit Sacred Atlas and link back if you build on it.

Endpoints

Use it from anywhere

# curl
curl -s https://sacredatlas.org/data/v1/parallels.json | jq '.[0]'

# Python
import urllib.request, json
data = json.load(urllib.request.urlopen(
  "https://sacredatlas.org/data/v1/themes.json"))
for t in data:
  print(t["title"], "-", len(t["verses"]), "verses")

# JavaScript
const figures = await fetch(
  "https://sacredatlas.org/data/v1/figures.json"
).then(r => r.json());
const cross = figures.filter(f => f.traditions.length >= 2);

Schema

Each endpoint is a JSON array of records. The shape is whatever the site uses internally — no transformation. parallels.json entries carry slug, title, summary, traditions, shared (motifs), divergences (per-tradition notes), passages (verse refs with KJV/Pickthall/Arnold/etc. quotes), and imageSlug. themes.json entries carry slug, title, summary, and verses (an array of verse refs with quotes from across traditions). For exact shapes, hit /data/v1/index.json and read the first record from each.

License & attribution

The compilation, curation, comparative summaries, and cross-tradition mappings are Sacred Atlas’s editorial work, released under CC BY 4.0. Underlying scripture is in the public domain — KJV (Bible), Pickthall (Quran), Edwin Arnold (Gita), Müller (Vedas/Upanishads/Dhammapada), Legge (Tao/Analects), Mead (Pistis Sophia), Schaff/CCEL editions of patristic commentary.

If you use this in a paper or product, a credit line and a link to sacredatlas.org is the only ask. If you publish derivative datasets, share-alike under CC BY 4.0.

Stability

These endpoints are versioned at /data/v1/. Slugs and shape will not break without bumping to v2. Counts (number of parallels, themes, etc.) grow over time — the dataset is additive, not lossy. Mirror it locally if you need a frozen snapshot.

Comparative Studies: The Flood Narrative· The Golden Rule· Abraham in Three Faiths· All Studies →