Hosts
List 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.
Default
20Range
1 <= value <= 100Response 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"
}
}{
"error": {
"code": "bad_request",
"message": "string",
"request_id": "string",
"details": [
{
"field": "string",
"message": "string"
}
]
}
}{
"error": {
"code": "bad_request",
"message": "string",
"request_id": "string",
"details": [
{
"field": "string",
"message": "string"
}
]
}
}Was this page helpful?