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

# List personas

> List the agent personas you can build an agent from

Personas are pre-written behavioural templates — tone, style and default
instructions. Pass a persona `id` as `agent_persona_id` when
[creating an agent](/docs/api-reference/agents/create-agent).

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.agentic-os.com/api/v1/prompts/personas \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  requests.get(
      "https://api.agentic-os.com/api/v1/prompts/personas",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  ```

  ```javascript Node theme={null}
  await fetch("https://api.agentic-os.com/api/v1/prompts/personas", {
    headers: { Authorization: `Bearer ${API_KEY}` },
  });
  ```
</CodeGroup>
