> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simplefunctions.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Daily Data

> Change feeds, context snapshots, highlights, daily trade ideas, public theses, and world-state Atom feed.

SimpleFunctions publishes daily and intraday data surfaces for agents and dashboards.

For raw tick-level market data, use the Real-Time Data API:

```bash theme={null}
curl "https://data.simplefunctions.dev/v1/snapshot"
curl "https://data.simplefunctions.dev/v1/movers?window=1h&n=50"
```

For WebSocket subscriptions, use:

```text theme={null}
wss://app.simplefunctions.dev/ws
```

See [Real-Time Data API](/reference/realtime-data) for raw REST and WebSocket frame shapes.

## Market changes

```http theme={null}
GET /api/changes?since=1h
GET /api/changes?since=2026-04-04T10:00:00Z
GET /api/changes?type=price_move
```

CLI:

```bash theme={null}
sf watch "fed"
sf watch "fed" flow
```

## Context and highlights

```http theme={null}
GET /api/public/context
GET /api/public/context?compact=true
GET /api/public/briefing?topic=iran
```

## Trade ideas

```http theme={null}
GET /api/public/ideas
GET /api/public/ideas/{id}
```

CLI:

```bash theme={null}
sf ideas --json
```

## Public theses

```http theme={null}
GET /api/public/theses
GET /api/public/thesis/{slug}
```

CLI:

```bash theme={null}
sf explore --json
```

## World-state feed

```http theme={null}
GET /api/agent/world/feed
```

Use feed mode when a passive subscriber is easier than polling.
