GETTING STARTED

Up and Running in 5 Minutes

Store facts, detect conflicts, gate actions — all through a single API.

1

Create an Account

Sign up at exogram.ai and choose your plan. The free tier includes 1,000 API calls per month.

Sign Up Free →
2

Get Your API Key

Navigate to your Dashboard → API Keys and create a new key. Copy it — you'll need it for all API calls.

Go to Dashboard →
3

Store Your First Fact

Use the /v2/vault/store endpoint to record a verifiable claim into your semantic ledger.

curl -X POST https://api.exogram.ai/v2/vault/store \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "claim": "Our Q4 revenue was $2.3M",
    "source": "finance_report_2025",
    "confidence": 0.95
  }'
4

Search Your ledger

Query your ledger using semantic search. The system returns facts ranked by relevance × confidence.

curl -X POST https://api.exogram.ai/v2/vault/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "query": "What was our revenue last quarter?" }'
5

Evaluate an Action

Submit a proposed action through the Judgment Engine. It evaluates 7 deterministic gates and returns ALLOWED, BLOCKED, or ESCALATE.

curl -X POST https://api.exogram.ai/v2/actions/evaluate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action_type": "send_email",
    "actor": "assistant",
    "actor_role": "user",
    "payload": { "to": "[email protected]", "subject": "Q4 Summary" },
    "impact_scope": "external"
  }'
6

Chrome Extension (Coming Soon)

The Exogram extension will inject your verified context into ChatGPT, Claude, Gemini, and Perplexity — giving every AI you use access to facts you control.

Coming Soon

Ready to go deeper?

Explore the full API reference, integrate with ChatGPT, or connect via MCP.