Back to agents docs
Free starter API

Make the first useful call in under 60 seconds

The free namespace exists for discovery and onboarding. It lets agents inspect Orrery's freshness, find a market, and fetch safe snapshot-lite context before paying for why, resolution risk, wallets, share cards, or decision bundles.

no auth

Free does not mean unbounded intelligence.

Free calls answer discovery questions. Paid x402/API-credit calls answer decision questions: why it moved, whether source risk matters, how to summarize a watchlist, and what an agent should verify next.

1. Open the catalog

curl -s https://orrery.me/api/free/v1/catalog | jq

The catalog returns the free endpoints, paid boundary, schema version, and upgrade links.

2. Search a market

curl -s 'https://orrery.me/api/free/v1/markets/search?q=bitcoin&limit=3' \
  | jq '.data.markets[] | {slug,title,probability}'

Use the returned slug as the stable id for snapshot-lite or paid market endpoints.

3. Fetch snapshot-lite

SLUG="will-bitcoin-hit-150k-by-june-30-2026"

curl -s "https://orrery.me/api/free/v1/markets/$SLUG/snapshot-lite" \
  | jq '{status:.data.derived_status.status, bucket:.data.research_bucket}'

Snapshot-lite intentionally includes status guardrails so a rail price does not get misread as official settlement.

4. Upgrade only when depth is needed

curl -i "https://orrery.me/api/x402/v1/markets/$SLUG/why"

# Expected without payment:
# HTTP/1.1 402 Payment Required

This is the boundary: discovery stays free; interpreted intelligence is paid by API key credits or x402 proof.

Free starter API - Orrery | Orrery