Endpoints underDocumentation Index
Fetch the complete documentation index at: https://docs.simplefunctions.dev/llms.txt
Use this file to discover all available pages before exploring further.
/api/agent/* return data shaped for LLM context windows: compact snapshots, deltas, structured ticker dossiers.
World
| Endpoint | Purpose |
|---|---|
GET /api/agent/world | Full compact world snapshot |
GET /api/agent/world/delta | Changes since ?since=<duration|date> |
GET /api/agent/world/feed | Activity feed slice |
GET /api/agent/world/{...path} | Sub-path routing |
Inspect
Feed
Why these are agent-shaped
The endpoints under/api/public/* return raw data; agent endpoints additionally:
- Compact the payload (drop fields agents don’t read).
- Structure related links (
nextActions[]) so the agent can chain calls. - Annotate with regime labels, indicator summaries, theme tags.
/api/public/*. For LLM-driven flows prefer /api/agent/* to save tokens.
See also
World model guide
Agent loop using snapshot + query + inspect + delta.
World state API
Full parameter list for snapshot/delta routes.