Skip to main content
Public API

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)}")
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 EndNoten Zotero, Mendeley.

RIS format
GET /data/CITATION.cff

Citation File Format — GitHub-compatible citation metadata.

CFF format
All data is licensed under CC BY 4.0. Attribution required. Data is regenerated at build time.