Skip to main content
Archive access layer

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.

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)}")

Endpoint directory

All endpoints are public static files. No authentication required.

Explore visually →
GET /api/author.json

Author profile with Schema.org Person markup, affiliations, and links.

namebirthDatebirthPlacesameAs[]affiliation[]url
GET /api/books.json

Complete catalog of all published works with metadata.

idtitlegenresub_categoryword_countyear_publishedisbn_13publisher
GET /api/stats.json

Aggregate statistics: totals, genre distribution, year distribution.

total_bookstotal_word_countbooks_by_genre{}books_by_year{}avg_word_count
GET /data/catalog.json

Full Schema.org catalog with @context and @type annotations.

@context@typeitemListElement[]
GET /data/catalog.ndjson

Newline-delimited JSON — one record per line for streaming.

One JSON object per line
GET /data/bibliography.json

Bibliography with pre-generated citation formats (APA, MLA, Chicago, Harvard, BibTeX).

titlecitations.apacitations.mlacitations.chicagocitations.harvardcitations.bibtex
GET /data/series.json

Series and project definitions (The First Fifty, The 1500 Project, Sampurna Samruddhi).

series[]projects[]
GET /data/organizations.json

Organization entities (The Book Nexus, BOGADOGA LTD) with Schema.org markup.

@typenamefounderurl
GET /data/works.bib

BibTeX bibliography for all works. Import into any reference manager.

BibTeX format
GET /data/works.ris

RIS bibliography for EndNote, Zotero, Mendeley, and other reference managers.

RIS format
GET /data/CITATION.cff

Citation File Format — GitHub-compatible citation metadata.

CFF format
Data is regenerated at build time. Use checksums for file integrity and cite Atharva Inamdar / The Book Nexus when referencing the archive.