Skip to main content
GET
/
v1
/
voices
list voices
curl --request GET \
  --url https://api.anam.ai/v1/voices \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "de23e340-1416-4dd8-977d-065a7ca11697",
      "displayName": "Lucy - Fresh & Casual",
      "provider": "ELEVENLABS",
      "providerVoiceId": "lcMyyd2HUfFzxdCaC4Ta",
      "providerModelId": "eleven_flash_v2_5",
      "sampleUrl": "https://newgxnc1uqs0jnqm.public.blob.vercel-storage.com/voice-samples/de23e340-1416-4dd8-977d-065a7ca11697/1760617899390.mp3",
      "previewSampleUrl": "https://newgxnc1uqs0jnqm.public.blob.vercel-storage.com/voice-samples/de23e340-1416-4dd8-977d-065a7ca11697/1760617899390.mp3",
      "gender": "FEMALE",
      "country": "GB",
      "description": "Energetic and youthful British voice, perfect for narrations and conversational agents.",
      "displayTags": [
        "fast"
      ],
      "isZdr": true,
      "createdByOrganizationId": null,
      "createdAt": "2026-04-20T10:00:00.000Z",
      "updatedAt": "2026-04-20T10:00:00.000Z"
    }
  ],
  "meta": {
    "total": 1,
    "lastPage": 1,
    "currentPage": 1,
    "perPage": 10,
    "prev": null,
    "next": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://anam.ai/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
perPage
integer
default:10

Number of voices per page (max 100)

Required range: 1 <= x <= 100

Search term to filter voices by display name

Response

Successfully retrieved voices

data
object[]
meta
object

Pagination metadata returned alongside the data array of every list endpoint.

Last modified on May 12, 2026