API and data access for the Inamdar Archive.
Static, public, no-login endpoints for humans, AI assistants, crawlers, journalists, researchers, libraries, and developers who need structured access to the archive.
Start with llms.txt, identity.json, sitemap files, and the Schema.org catalog to understand the entity and archive quickly.
Use bibliography JSON, BibTeX, RIS, and checksums when citation quality and reproducible downloads matter.
Use JSON or NDJSON when you want to filter, transform, index, or build interfaces on top of the catalog.
Quick Start
Use these static URLs directly. They are designed for indexing, citation workflows, archive exploration, and simple application development.
# Get canonical author/entity info
curl https://atharvainamdar.com/api/author.json
# Get the catalog
curl https://atharvainamdar.com/api/books.json
# Stream one JSON record per line
curl https://atharvainamdar.com/data/catalog.ndjson
# Python example
import requests
books = requests.get('https://atharvainamdar.com/api/books.json').json()
print(f"Total records: {len(books)}") Which file should I use?
Different users need different doors into the same archive. This guide keeps the data layer simple.
Apps, search indexes, dashboards, and AI retrieval systems.
Streaming pipelines, command-line processing, and large catalog imports.
Spreadsheets, quick audits, journalists, and non-technical review.
Citation managers, libraries, academic references, and researchers.
Verifying downloaded files and tracking data integrity over time.
Endpoint directory
All endpoints are public static files. No authentication required.
/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/works.ris RIS bibliography for EndNote, Zotero, Mendeley, and other reference managers.
/data/CITATION.cff Citation File Format — GitHub-compatible citation metadata.
Machine-readable resources
The archive is discoverable through standard web files, AI entry points, checksums, and citation-ready exports.