The platform at a glance.
Essarion is one platform composed of three systems — a citation-grade research engine, a project-scoped agent workspace, and 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. It is an operating workspace for serious work — research, analysis, document review, code, diligence — with the runtime, governance, and observability that platform teams have to own.
The platform exposes that runtime in three ways. You can sit inside the workspace as a user. You can let an end-user sit inside it as your customer. Or you can call the engine directly from your own product through the API.
§ 02Three systems
The platform is one product surface; underneath it is three engines that 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.
Essarion Agents
A project-centric AI workspace. Agents read and write files in a per-project drive, run real terminal commands in an isolated PTY, drive a real cloud browser through Stagehand, and produce auditable artifacts. They can spawn subagents to parallelize work, follow domain-specific skill packs and policy bundles, and run pre-built jobs for accountancy, contract review, executive briefs, and more. → Read more.
Platform API
A small, documented HTTP surface for the same engine that powers the workspace. 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 systems are not silos. They share four things:
- Identity. One account works across the workspace, the research UI, 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 can flow into Agents projects 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:
- Product & engineering teams who want a code-aware agent surface with a real terminal and a real browser.
- 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 use the agent workspace → Agents quickstart