API

Machine-readable access to the research transparency layer. Static JSON + sitemap + llms.txt discovery, regenerated from source markdown on every site build. Designed for AI search agents, traditional crawlers, and anyone who'd rather parse JSON than scrape HTML.

Current contents

7 audit 22 log 9 paper status 5 prediction 8 test 51 total entries

Last generated: 2026-05-12T03:27:18.533879Z

Endpoints

GET/api/manifest.json
Master index. Every entry's id, type, title, status, project, date, tags, summary excerpt, and link. The first call most consumers should make.
GET/api/entries/<id>.json
Full per-entry payload: complete frontmatter, body as markdown, body as rendered HTML, forward see_also + resolved reverse cited_by, plus attachments.
GET/api/by-type/<type>.json
Filtered listing for one entry type. Types: log (research notes), test, audit, prediction, paper_status.
GET/api/sitemap.xml
Traditional XML sitemap for search-engine crawlers.
GET/llms.txt
Site root. The emerging AI-discovery convention — a short markdown manifest of what the site is and where the structured data lives. AI agents looking for a quick orientation should start here.
GET/research/_src/<type-dir>/<id>.md.txt
Raw markdown source for any entry, with the original YAML frontmatter intact. The authoritative source — every JSON record above derives from these.

Example: fetch every confirmed audit

curl https://prometheusresearch.tech/api/by-type/audit.json \
  | jq '.entries[] | select(.status == "confirmed")'

Example: fetch one entry's full payload

curl https://prometheusresearch.tech/api/entries/fibonacci-to-tribonacci-c-ladder-correction.json \
  | jq '{title, status, see_also, cited_by, body_markdown}'

Conventions