GET
/
v1
/
personas
/
{persona_id}
Get Persona
curl --request GET \
  --url https://api.bland.ai/v1/personas/{persona_id} \
  --header 'authorization: <authorization>'
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "name": "Customer Support Agent",
    "role": "Customer Support",
    "description": "A capable customer support agent",
    "tags": ["Customer Support"],
    "image_url": null,
    "created_at": "2025-09-16T23:54:44.420Z",
    "updated_at": "2025-09-16T23:54:59.896Z",
    "deleted_at": null,
    "user_id": "12345678-1234-1234-1234-123456789012",
    "current_production_version_id": "12345678-1234-1234-1234-123456789012",
    "current_draft_version_id": "12345678-1234-1234-1234-123456789012",
    "inbound_numbers": [],
    "current_production_version": {
      "id": "12345678-1234-1234-1234-123456789012",
      "persona_id": "12345678-1234-1234-1234-123456789012",
      "version_type": "production",
      "version_number": 1,
      "orchestration_prompt": null,
      "personality_prompt": "You are a friendly and helpful customer support agent",
      "pathway_conditions": null,
      "kb_ids": [],
      "call_config": {
        "voice": "June",
        "record": true,
        "language": "en-US",
        "background": "office",
        "max_duration": 30,
        "wait_for_greeting": false,
        "interruption_threshold": 100
      },
      "default_tools": [],
      "promoted_from_version_id": null,
      "promoted_at": "2025-09-16T23:54:44.441Z",
      "promoted_by": null,
      "created_at": "2025-09-16T23:54:44.442Z",
      "updated_at": "2025-09-16T23:54:44.442Z"
    },
    "current_draft_version": {
      "id": "12345678-1234-1234-1234-123456789012",
      "persona_id": "12345678-1234-1234-1234-123456789012",
      "version_type": "draft",
      "version_number": 2,
      "orchestration_prompt": null,
      "personality_prompt": "You are a friendly and helpful customer support agent",
      "pathway_conditions": [
        {
          "name": "",
          "prompt": "",
          "pathway_id": "",
          "start_node_id": "",
          "pathway_version": ""
        },
        {
          "name": "",
          "prompt": "",
          "pathway_id": "",
          "start_node_id": "",
          "pathway_version": ""
        }
      ],
      "kb_ids": [],
      "call_config": {
        "voice": "June",
        "record": true,
        "language": "en-US",
        "background": "office",
        "max_duration": 30,
        "wait_for_greeting": false,
        "interruption_threshold": 100
      },
      "default_tools": [],
      "promoted_from_version_id": "12345678-1234-1234-1234-123456789012",
      "promoted_at": null,
      "promoted_by": null,
      "created_at": "2025-09-16T23:54:44.463Z",
      "updated_at": "2025-09-16T23:54:59.917Z"
    }
  },
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

persona_id
string
required
The unique identifier of the persona to retrieve.

Response

data
object
The persona object.
errors
string
Any errors that occurred (null if none).
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "name": "Customer Support Agent",
    "role": "Customer Support",
    "description": "A capable customer support agent",
    "tags": ["Customer Support"],
    "image_url": null,
    "created_at": "2025-09-16T23:54:44.420Z",
    "updated_at": "2025-09-16T23:54:59.896Z",
    "deleted_at": null,
    "user_id": "12345678-1234-1234-1234-123456789012",
    "current_production_version_id": "12345678-1234-1234-1234-123456789012",
    "current_draft_version_id": "12345678-1234-1234-1234-123456789012",
    "inbound_numbers": [],
    "current_production_version": {
      "id": "12345678-1234-1234-1234-123456789012",
      "persona_id": "12345678-1234-1234-1234-123456789012",
      "version_type": "production",
      "version_number": 1,
      "orchestration_prompt": null,
      "personality_prompt": "You are a friendly and helpful customer support agent",
      "pathway_conditions": null,
      "kb_ids": [],
      "call_config": {
        "voice": "June",
        "record": true,
        "language": "en-US",
        "background": "office",
        "max_duration": 30,
        "wait_for_greeting": false,
        "interruption_threshold": 100
      },
      "default_tools": [],
      "promoted_from_version_id": null,
      "promoted_at": "2025-09-16T23:54:44.441Z",
      "promoted_by": null,
      "created_at": "2025-09-16T23:54:44.442Z",
      "updated_at": "2025-09-16T23:54:44.442Z"
    },
    "current_draft_version": {
      "id": "12345678-1234-1234-1234-123456789012",
      "persona_id": "12345678-1234-1234-1234-123456789012",
      "version_type": "draft",
      "version_number": 2,
      "orchestration_prompt": null,
      "personality_prompt": "You are a friendly and helpful customer support agent",
      "pathway_conditions": [
        {
          "name": "",
          "prompt": "",
          "pathway_id": "",
          "start_node_id": "",
          "pathway_version": ""
        },
        {
          "name": "",
          "prompt": "",
          "pathway_id": "",
          "start_node_id": "",
          "pathway_version": ""
        }
      ],
      "kb_ids": [],
      "call_config": {
        "voice": "June",
        "record": true,
        "language": "en-US",
        "background": "office",
        "max_duration": 30,
        "wait_for_greeting": false,
        "interruption_threshold": 100
      },
      "default_tools": [],
      "promoted_from_version_id": "12345678-1234-1234-1234-123456789012",
      "promoted_at": null,
      "promoted_by": null,
      "created_at": "2025-09-16T23:54:44.463Z",
      "updated_at": "2025-09-16T23:54:59.917Z"
    }
  },
  "errors": null
}