API Documentation
Static JSON API for the Inamdar literary archive. No authentication required. No rate limits. CORS-enabled.
Quick Start
# Get author info
curl https://atharvainamdar.com/api/author.json
# Get all books
curl https://atharvainamdar.com/api/books.json
# Get statistics
curl https://atharvainamdar.com/api/stats.json
# Python example
import requests
books = requests.get('https://atharvainamdar.com/api/books.json').json()
print(f"Total books: {len(books)}") /api/author.json Author profile with Schema.org Person markup, affiliations, and links.
/api/books.json Complete catalog of all published works with metadata.
/api/stats.json Aggregate statistics: totals, genre distribution, year distribution.
/data/catalog.json Full Schema.org catalog with @context and @type annotations.
/data/catalog.ndjson Newline-delimited JSON — one record per line for streaming.
/data/bibliography.json Bibliography with pre-generated citation formats (APA, MLA, Chicago, Harvard, BibTeX).
/data/series.json Series and project definitions (The First Fifty, The 1500 Project, Sampurna Samruddhi).
/data/organizations.json Organization entities (The Book Nexus, BogaDoga Ltd) with Schema.org markup.
/data/works.bib BibTeX bibliography for all works. Import into any reference manager.
/data/CITATION.cff Citation File Format — GitHub-compatible citation metadata.