> ## 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.

# Account API

> User-scoped theses, feed, intents, API keys, and usage surfaces.

Authenticated account endpoints use `Authorization: Bearer <SF_API_KEY>`.

## Theses

```http theme={null}
GET /api/thesis
GET /api/thesis/{id}
POST /api/thesis/create
POST /api/thesis/{id}/signal
POST /api/thesis/{id}/evaluate
GET /api/thesis/{id}/context
GET /api/thesis/{id}/changes
GET /api/thesis/{id}/evaluations
```

## Feed

```http theme={null}
GET /api/feed?hours=24&limit=200
```

Returns evaluation history across the authenticated user's theses.

## API keys

```http theme={null}
GET /api/keys
POST /api/keys
DELETE /api/keys/{id}
```

List responses return key metadata. Raw keys are only returned once on creation.

## Usage

```http theme={null}
GET /api/dashboard/usage?period=30d
```

Returns cost, API usage, model usage, and request history scoped to the authenticated user. Auth: `Authorization: Bearer sf_live_...` or browser session.
