GET
/
v1
/
personas
/
{persona_id}
/
versions
/
{version_id}
Get Specific Persona Version
curl --request GET \
  --url https://api.bland.ai/v1/personas/{persona_id}/versions/{version_id} \
  --header 'authorization: <authorization>'
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "persona_id": "12345678-1234-1234-1234-123456789013",
    "version_type": "archived",
    "version_number": 1,
    "orchestration_prompt": null,
    "personality_prompt": "You are a helpful assistant",
    "pathway_conditions": null,
    "kb_ids": [],
    "call_config": null,
    "default_tools": [],
    "promoted_from_version_id": null,
    "promoted_at": "2025-09-23T15:13:36.368Z",
    "promoted_by": null,
    "created_at": "2025-09-23T15:13:36.369Z",
    "updated_at": "2025-09-23T15:55:57.234Z"
  },
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

persona_id
string
required
The unique identifier of the persona.
version_id
string
required
The specific version identifier to retrieve (e.g., “v1.2”, “draft”, “production”).

Response

data
object
The specific version object.
errors
string
Any errors that occurred (null if none).
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "persona_id": "12345678-1234-1234-1234-123456789013",
    "version_type": "archived",
    "version_number": 1,
    "orchestration_prompt": null,
    "personality_prompt": "You are a helpful assistant",
    "pathway_conditions": null,
    "kb_ids": [],
    "call_config": null,
    "default_tools": [],
    "promoted_from_version_id": null,
    "promoted_at": "2025-09-23T15:13:36.368Z",
    "promoted_by": null,
    "created_at": "2025-09-23T15:13:36.369Z",
    "updated_at": "2025-09-23T15:55:57.234Z"
  },
  "errors": null
}