JellypodJellypod
Hosts

Get a host

GET
/hosts/{host_id}

Retrieve a single host by ID.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

host_id*string

The host's unique identifier (short ID, not a UUID).

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.jellypod.com/v1/hosts/xK9mQ2pL"
{
  "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"
  }
}

Was this page helpful?