Skip to main content
GET
/
api
/
pagevoices
Retrieve Paginated Voices
curl --request GET \
  --url https://converter.fineshare.net/api/pagevoices \
  --header 'authorization: <authorization>'
{
  "page": 1,
  "limit": 10,
  "total": 50,
  "voices": [
    {
      "id": "Nabuless",
      "name": "Narration Voice",
      "language": "en-US",
      "gender": "female",
      "category": "narration"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://api.finevoice.ai/llms.txt

Use this file to discover all available pages before exploring further.

Headers

authorization
string
required

Bearer token for authentication.

Query Parameters

v
enum<string>

Version of the voices data.

Available options:
v2
categroy
string

Category of the voices. For custom models, pass the value my_voices.

gender
enum<string>

Gender filter for the voices.

Available options:
all,
male,
female
language
string

Language filter for the voices.

page
integer
required

Page number for pagination.

Required range: x >= 0
limit
integer
required

Number of voices per page.

Required range: 1 <= x <= 100

Response

Paginated list of voices retrieved successfully.

page
integer
Example:

1

limit
integer
Example:

10

total
integer
Example:

50

voices
object[]