List Voices (Paginated)
Returns a page of voices for the specified provider. Unlike GET /api/open/v1/voice/list, this endpoint paginates results and does not support filtering by name or gender.
Pagination behavior varies by provider:
- OpenAI (system voices): Uses
page,size, andtotal. - ElevenLabs, Cartesia, and similar: Cursor-style pagination — when
hasMoreis true, passnextPageTokenfrom the previous response on the next request.
Constraints: size must be between 1 and 100 (default 20).
Authorizations
NavTalk API license key (e.g. sk_navtalk_...)
Query Parameters
The provider ID (obtained from /provider/list)
"b92a28fb2ea737457c7f13ba554759c0"
Page number (most relevant for providers backed by database paging). Default: 1.
x >= 11
Page size. Must be between 1 and 100. Default: 20.
1 <= x <= 10020
Cursor for the next page (from the previous response's data.nextPageToken). Omit or use empty string for the first page.
""
Response
Paginated voice list retrieved successfully