Skip to main content
GET
/
personalities
List personalities
curl --request GET \
  --url https://api.spikelabs.com/v1/personalities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "personality_abc123",
      "object": "personality",
      "name": "Luv",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "system_prompt": "<string>",
      "voice": {
        "provider": "elevenlabs",
        "voice_id": "<string>",
        "settings": {
          "stability": 0.5,
          "similarity_boost": 0.5,
          "speed": 1.25
        }
      },
      "appearance": {
        "avatar_id": "<string>",
        "style": "realistic",
        "background": "<string>"
      },
      "traits": {
        "warmth": 0.5,
        "humor": 0.5,
        "formality": 0.5,
        "verbosity": 0.5,
        "empathy": 0.5
      },
      "metadata": {}
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication. Use your secret key (starts with sk_) as a Bearer token.

Query Parameters

limit
integer
default:20

Number of items to return (1-100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

List of personalities

data
object[]
required
has_more
boolean
required
next_cursor
string | null