# Interactive API Explorer

Every public endpoint is browsable and runnable in your browser, generated directly from the live OpenAPI spec — so it never drifts from the actual API.

- **Explorer:** [api.samreshuuu.com/api/v1/developers/docs](https://api.samreshuuu.com/api/v1/developers/docs)
- **OpenAPI spec:** [api.samreshuuu.com/api/v1/developers/openapi.json](https://api.samreshuuu.com/api/v1/developers/openapi.json)

## Generate a Client

The raw spec is standard OpenAPI 3 — feed it to any generator to scaffold a typed client.

```bash
npx @openapitools/openapi-generator-cli generate \
  -i https://api.samreshuuu.com/api/v1/developers/openapi.json \
  -g typescript-fetch \
  -o ./samreshuuu-client
```

**What's in the public surface**

The explorer covers `sessions`, `documents`, `knowledge`, `tasks`, `executions`, `agents`, `models`, `tags`, and `chat-completions`. Connectors are **not** exposed over REST — reach them through the agent (via [chat](/docs/openai-compatible)) or the `connector_execute` tool over [MCP](/docs/mcp).
