JellypodJellypod
Hosts

List hosts

GET
/hosts

Returns a paginated list of hosts in the organization.

Authorization

BearerAuth
AuthorizationBearer <token>

Jellypod API key. Create and manage keys from the Jellypod dashboard under Settings → API Keys.

In: header

Query Parameters

cursor?string

Opaque cursor from a previous response's next_cursor field. Omit for the first page.

limit?integer

Number of items to return per page.

Default20
Range1 <= value <= 100

Response Body

application/json

application/json

application/json

curl -X GET "https://api.jellypod.com/v1/hosts"
{
  "data": [
    {
      "id": "xK9mQ2pL",
      "name": "Alex Chen",
      "title": "Tech Journalist",
      "backstory": "Alex is a veteran technology reporter who has covered Silicon Valley for over a decade.",
      "personality": "Curious, articulate, slightly skeptical",
      "voice_id": 42,
      "voice_model": "horizon",
      "voice": {
        "id": 42,
        "description": "A warm, authoritative male voice with an American accent",
        "language": "en",
        "gender": "male",
        "accent": "american",
        "voice_type": "professional"
      },
      "created_at": "2026-01-15T10:30:00.000Z",
      "updated_at": "2026-02-20T14:22:00.000Z"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "string"
  }
}

Was this page helpful?