GET
/
v1
/
personas
List Personas
curl --request GET \
  --url https://api.bland.ai/v1/personas \
  --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"
      }
    },
    {
      "id": "12345678-1234-1234-1234-123456789013",
      "name": "Sales Representative",
      "role": "Sales",
      "description": "A capable sales representative",
      "tags": ["Sales"],
      "image_url": null,
      "created_at": "2025-09-23T14:40:01.089Z",
      "updated_at": "2025-09-23T14:40:01.153Z",
      "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-123456789013",
        "version_type": "production",
        "version_number": 1,
        "orchestration_prompt": null,
        "personality_prompt": "You are a friendly and helpful sales representative",
        "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-23T14:40:01.109Z",
        "promoted_by": null,
        "created_at": "2025-09-23T14:40:01.110Z",
        "updated_at": "2025-09-23T14:40:01.110Z"
      },
      "current_draft_version": {
        "id": "12345678-1234-1234-1234-123456789012",
        "persona_id": "12345678-1234-1234-1234-123456789013",
        "version_type": "draft",
        "version_number": 2,
        "orchestration_prompt": null,
        "personality_prompt": "You are a friendly and helpful sales representative",
        "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": "12345678-1234-1234-1234-123456789012",
        "promoted_at": null,
        "promoted_by": null,
        "created_at": "2025-09-23T14:40:01.132Z",
        "updated_at": "2025-09-23T14:40:01.132Z"
      }
    }
  ],
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

page
integer
default:"1"
Page number for pagination.
limit
integer
default:"20"
Number of personas to return per page (max 100).

Response

data
array
Array of persona objects.
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"
      }
    },
    {
      "id": "12345678-1234-1234-1234-123456789013",
      "name": "Sales Representative",
      "role": "Sales",
      "description": "A capable sales representative",
      "tags": ["Sales"],
      "image_url": null,
      "created_at": "2025-09-23T14:40:01.089Z",
      "updated_at": "2025-09-23T14:40:01.153Z",
      "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-123456789013",
        "version_type": "production",
        "version_number": 1,
        "orchestration_prompt": null,
        "personality_prompt": "You are a friendly and helpful sales representative",
        "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-23T14:40:01.109Z",
        "promoted_by": null,
        "created_at": "2025-09-23T14:40:01.110Z",
        "updated_at": "2025-09-23T14:40:01.110Z"
      },
      "current_draft_version": {
        "id": "12345678-1234-1234-1234-123456789012",
        "persona_id": "12345678-1234-1234-1234-123456789013",
        "version_type": "draft",
        "version_number": 2,
        "orchestration_prompt": null,
        "personality_prompt": "You are a friendly and helpful sales representative",
        "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": "12345678-1234-1234-1234-123456789012",
        "promoted_at": null,
        "promoted_by": null,
        "created_at": "2025-09-23T14:40:01.132Z",
        "updated_at": "2025-09-23T14:40:01.132Z"
      }
    }
  ],
  "errors": null
}