The platform at a glance.
Essarion is one platform composed of three products — a citation-grade research engine, a living encyclopedia written by it, and an autonomous research scientist for biology and medicine — plus a programmatic API that ties them together. This page is the orientation. Read it once, then jump into whichever surface you actually need.
§ 01What is Essarion
Most "AI" products are a single chat box wrapped around a single model. Essarion is built differently. One research engine sits underneath everything, and three products expose it for different work — asking a question and getting a cited answer, reading an encyclopedia that engine keeps current, and running a biomedical study end to end.
You can use any of the three directly, or call the engine from your own product through the API.
§ 02Three products
Three products, one engine. They share state, identity, and policy.
ResearchAnything.ai
A research agent that takes a question and returns a citation-ready answer. It plans sub-queries, searches the open web, scrapes and screens the results, scores sources for credibility and relevance, performs deep analysis on the survivors, and synthesizes a final report with formal citations in any of MLA, APA, Chicago, IEEE, Harvard, or BibTeX. Every step is persisted; every claim is traceable to a source. → Read more.
Sourcipedia
A living encyclopedia where every entry carries its sources, kept current and free to read. Each entry is researched and revised by ResearchAnything, so the corpus grows and corrects itself rather than sitting still. → Read more.
Essarion Science
An autonomous research scientist for biology and medicine. It plans the study, pulls real records from thirteen public biomedical databases, runs the analysis in a live notebook, models protein structures, and stress-tests its own conclusions before reporting them. → Read more.
Platform API
A small, documented HTTP surface for the same engine that powers ResearchAnything. Submit a research query, subscribe to a stream of events, fetch the timeline of a run, manage keys, view usage. Build with Essarion behind your own product. → Read more.
§ 03How they fit together
The three products are not silos. They share four things:
- Identity. One account works across the products and API keys.
- Runs. A query started from any surface is the same kind of object, with the same persistent timeline.
- Sources and citations. Sources discovered by ResearchAnything flow into the Sourcipedia corpus and back into API responses.
- Policy and accounting. Per-token costing, plan enforcement, and audit logs are platform-wide, not per-product.
For the wiring diagram and component-level architecture, see Architecture.
§ 04Who is it for
Essarion is built for teams that have to ship the answer — not a transcript of a chat. Four audiences in particular:
- Researchers & scientists who need an answer with its analysis and its sources attached, not a summary of the first three hits.
- Knowledge & analyst teams who need document synthesis with formal, exportable citations.
- Executive workflows — diligence memos, contract review, board packs, deal underwriting — where the output has to be defensible.
- Platform teams who want governance: per-token costing, model routing, session control, audit logs.
§ 05How to read these docs
The sidebar is grouped by product. Within each product, pages run in roughly the order you'd actually need them — overview first, then quickstart, then deeper reference.
- If you're new, read Core concepts, then pick a product and walk its quickstart.
- If you're integrating, jump straight to API · Quickstart and Streaming with SSE.
- If you're evaluating for your team, read this page, Architecture, and Security.
§ 06Conventions used in these docs
A few signals reappear across every page.
Endpoint blocks
API endpoints look like this:
The verb is colored, the path is verbatim. Required auth and parameters are listed in a table directly below.
Code blocks
Inline code looks like esk_xxxx. Multi-line examples are labeled with the language they're in.
curl https://api.essarion.com/api/v1/query \
-H "Authorization: Bearer $ESSARION_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "How does the platform compose?"}'
Call-outs
§ 07Where to go next
Pick the path that matches what you're trying to do.
- I want to understand the building blocks → Core concepts
- I want to see the wiring diagram → Architecture
- I want to run my first query → Your first query
- I want to use the research UI → Research quickstart
- I want to read or search the encyclopedia → Sourcipedia quickstart
- I want to run a biomedical study → Science quickstart