> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.cloudraker.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.cloudraker.com/_mcp/server.

# API reference

The RakerOne API is a multi-tenant gateway for playbooks, AI agents, and human–task collaboration. Every request resolves to a single tenant's database, keyed by the `org` claim in your token.

## Base URL

```
https://app.raker.one/api
```

## Authentication

Authenticate with a `Bearer` token — either a WorkOS session JWT (from AuthKit) or an organization API key:

```bash
curl https://app.raker.one/api/projects \
  -H "Authorization: Bearer YOUR_TOKEN"
```

Create and manage organization API keys from your [organization settings](/admin/api-keys). Tenancy is keyed by the `org` claim in the token, so each key only ever reaches its own organization's data.

Browse the endpoints in the sidebar. Each one lists its parameters, request and response schemas, and a ready-to-run example.