---
title: "Get a specific persona by ID"
method: GET
path: "/v1/personas/{persona_id}"
tags: ["v1 personas"]
---

# Get a specific persona by ID

`GET /v1/personas/{persona_id}`

Retrieve details of a specific persona by its unique identifier.

    This endpoint:
    - Returns full persona information including metadata
    - Any user in the same organization can access any persona
    - Returns 404 if persona is not found

    **Authentication**: Requires valid API key or JWT token in Authorization header

## Path parameters

- `persona_id` string, required

## Response `200`

Successful Response

- PersonaRetrieveResponse — Response model for retrieving a single persona (consistent with create/update)
  - `persona` PersonaResponse, required — Response model for persona information
    - `persona_id` string, required
    - `user_id` string, required
    - `name` string, required
    - `description` string, nullable, required
    - `created_at` string, date-time, required
    - `user_name` string, nullable, required
    - `user_email` string, nullable, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Persona not found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/elicitlabs/apis/elicit-labs-api.md) · [All operations](https://skmtc.net/elicitlabs/apis/elicit-labs-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/elicitlabs/elicit-labs-api/revisions/27701839a070/schema)
