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

# Developer quickstart

> Connect to Wazoo API and query context in 2 minutes.

<Note>
  Looking to manage worlds visually in the browser? See the [Console
  quickstart](/getting-started).
</Note>

## Quickstart with cURL and API keys

If you prefer calling the Wazoo Platform API directly using HTTP/cURL:

<Steps>
  <Step title="Get your platform token">
    Generate your `wzp_` token from the
    [Console tokens page](/console/tokens).
  </Step>

  <Step title="List your worlds">
    ```bash theme={null}
    curl -s -X GET "https://api.wazoo.dev/v1/worlds" \
      -H "Authorization: Bearer wzp_YOUR_PLATFORM_TOKEN"
    ```
  </Step>

  <Step title="Create a new world">
    ```bash theme={null}
    curl -s -X POST "https://api.wazoo.dev/v1/worlds" \
      -H "Authorization: Bearer wzp_YOUR_PLATFORM_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{
        "worldId": "my-agent-world",
        "world": {
          "displayName": "My Agent World",
          "region": "auto"
        }
      }'
    ```
  </Step>
</Steps>

## Agent skills

The `wazoo` skill gives AI coding agents (Claude Code, Cursor, OpenCode, Gemini)
direct access to Wazoo memory. See
[Agents, skills, and MCP](/integrations/agents-skills-mcp) to install and use
it.

New to Wazoo? Start with the [getting started guide](/getting-started) for an
end-to-end walkthrough from invite to your first query.

## Choose your path

<CardGroup cols={2}>
  <Card title="Platform API" icon="waypoints" href="/platform/api">
    Manage your Worlds, API tokens, resource usage, and billing via HTTP
    endpoints.
  </Card>

  <Card title="TypeScript SDK" icon="https://mintcdn.com/wazoo/cc07Litf9kgJUEHE/images/icons/typescript.svg?fit=max&auto=format&n=cc07Litf9kgJUEHE&q=85&s=554ecd4cb78440e1fe29fcec41fa89ea" href="/platform/typescript-sdk" width="24" height="24" data-path="images/icons/typescript.svg">
    Use `@wazoo/client` for typed TypeScript/Node.js management.
  </Card>

  <Card title="Worlds Data Engine" icon="network" href="/projects/worlds">
    Interact with persistent knowledge graphs, SPARQL queries, and vector
    search.
  </Card>

  <Card title="MemSDK" icon="database" href="/projects/memsdk">
    Backend-agnostic memory interface for AI agents.
  </Card>
</CardGroup>
