Skip to main content
The world model is the fastest way to give an agent current prediction-market context. Start with a snapshot, use query for task-specific search, inspect the markets that matter, then poll deltas instead of reloading the whole world.

Start here

CLI equivalents:

What to call

Agent loop

Use the snapshot for the agent’s context window. Use query when the user asks about a specific event. Use inspect before acting on one ticker. Use delta for recurring jobs.

Snapshot

The JSON snapshot includes: Example:

Drill paths

Path segments narrow the world model.
CLI:
Use drill paths when an agent already knows the topic and needs a smaller context object.

Operations

op changes the view while keeping the response shaped as a world snapshot. Useful parameters:

Delta

If changes is empty, keep the previous snapshot and continue the loop.

Inspect

Inspect returns the detailed object an agent needs before it acts on a market: Options:

Feed

The feed is Atom XML for subscribers that want the latest world snapshots without polling JSON directly.
Use it for RSS readers, automation tools, crawlers, and agent frameworks that ingest feeds.

World State API

Endpoint parameters and response shapes.

Query API

Natural-language event search.

Market Detail API

Public market detail endpoint.

Agentic CLI

Local command equivalents for agents.