Fermi

Calibrated probability estimates from natural-language questions.

Ask a question like “What will the price of Bitcoin be in 6 months?” and Fermi returns a probability distribution — family, parameters, coverage interval, point estimate — with reasoning and assumptions. Works for market sizing, forecasting, risk assessment, and any question where you need a calibrated probabilistic answer.

Getting Started

Fermi is a REST + MCP API. The fastest way to explore:

  1. Browse the interactive API docs (Swagger UI) — try requests live, see schemas, and use the Authorize button to set your API key.
  2. Create an accountcurl -X POST https://fermi.krobar.ai/api/v1/accounts — returns an API key and 3 starter credits.
  3. Make your first estimate:
curl -X POST https://fermi.krobar.ai/api/v1/estimates \
  -H "X-API-Key: <your api_key from step 2>" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{"question": "How many coffee shops are in SF?",
       "requested_tier_id": 1, "unit": "count",
       "target_horizon": "current",
       "disclaimer_acknowledged": true}'

Use cases

What you get back

Every estimate includes:

API Documentation

Quick Start

If you are an AI agent, here is everything you need to make your first estimate. The full self-contained flow is below; the linked files are for deeper reference.

Auth rules (read these once, save yourself a retry):

Full cold-start flow (copy-pasteable):

# 1. Sign up (returns {account_id, api_key, created_at}; 3 starter credits)
curl -X POST https://fermi.krobar.ai/api/v1/accounts

# 2. Make an estimate (replace <api_key> with what you got in step 1)
curl -X POST https://fermi.krobar.ai/api/v1/estimates \
  -H "X-API-Key: <api_key>" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "What will the price of Bitcoin be in 6 months?",
    "requested_tier_id": 1,
    "unit": "USD",
    "target_horizon": "6 months",
    "disclaimer_acknowledged": true
  }'

The estimate response contains estimation_interval {low, high}, distribution_family, distribution_parameters, point_estimate, reasoning_summary, assumptions, and credits_charged.

Agent Discovery Files

MCP Integration

Fermi supports the Model Context Protocol:

Pricing & free tier