---
title: "Get Personas"
method: GET
path: "/api/v1/personas"
tags: ["Basics"]
---

# Get Personas

`GET /api/v1/personas`

Returns all personas for a specific website, sorted by name, with the number of non-deleted prompts each persona is assigned to. Use the returned IDs to resolve `persona_id` values returned by other endpoints and tools to persona names and descriptions.

## Query parameters

- `website_id` string, uuid, required

## Response `200`

Successful response with list of personas

- object
  - `personas` PersonaWithCount[], required
    - `id` string, uuid, required — Unique identifier for the persona
    - `name` string, required — Persona name
    - `description` string, nullable, required — Persona description text, or null when none is set
    - `prompt_count` integer, required — Number of non-deleted prompts this persona is assigned to. Matches the number of rows GET /api/v1/prompts returns for the same persona.

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - You don't have access to this website

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/revisions/6c5d71622cb9/schema)
