NXTX
  1. Voice
NXTX
  • Auth
    • Register
      POST
    • Login
      POST
    • Refresh
      POST
    • Logout
      POST
    • Me
      GET
  • Onboard
    • Complete Onboarding
      POST
  • Thread
    • Create Thread
      POST
  • Stream
    • Stream
      POST
    • Post Text
      POST
    • Interrupt
      POST
  • Session
    • Verify Passkey
      POST
    • Verify Passkey V2
      POST
    • Create Session Video
      POST
    • Create Session Audio
      POST
    • Create Session Text
      POST
    • Create Token
      POST
    • Close Session
      POST
    • Close Session Audio
      POST
    • Verify Token
      POST
  • Media Url
    • Create Media Url
  • KB
    • Get Knowledge Base
    • Get By
    • Create
    • Update
    • Delete
    • Delete Link
    • Delete File
  • Websocket
    • Task
    • Listen
  • Tenant
    • Get Tenant Info
    • Get Api Key
    • Regenerate Api Key
  • Billing
    • Checkout Session
    • Payment Success
    • Get Subscription
    • Webhook
  • Voice
    • Get Voices
      GET
    • Get Voice
      GET
    • Get Voice Url
      GET
    • Create Voice
      POST
    • Delete Voice
      DELETE
  • Chat History
    • Chat History List
    • Chat History
  • Avatar
    • Get Avatars
    • Get Avatar
  1. Voice

Get Voices

GET
/api/v2/voices/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v2/voices/'
Response Response Example
{
    "data": [
        {
            "id": 4,
            "name": "Ash",
            "tenant_id": null,
            "is_public": true,
            "created_at": "2025-07-11T05:29:03.442125+00:00",
            "file_url": null,
            "file_size": null,
            "content_type": "audio/wav",
            "duration": null,
            "file_size_mb": 0.0,
            "duration_formatted": "00:00"
        },
        {
            "id": 2,
            "name": "Coral",
            "tenant_id": null,
            "is_public": true,
            "created_at": "2025-07-11T05:22:51.337658+00:00",
            "file_url": null,
            "file_size": null,
            "content_type": "audio/wav",
            "duration": null,
            "file_size_mb": 0.0,
            "duration_formatted": "00:00"
        },
        {
            "id": 3,
            "name": "Alloy",
            "tenant_id": null,
            "is_public": true,
            "created_at": "2025-07-11T05:22:51.337658+00:00",
            "file_url": null,
            "file_size": null,
            "content_type": "audio/wav",
            "duration": null,
            "file_size_mb": 0.0,
            "duration_formatted": "00:00"
        },
        {
            "id": 1,
            "name": "Echo",
            "tenant_id": null,
            "is_public": true,
            "created_at": "2025-07-10T12:24:57.125601+00:00",
            "file_url": null,
            "file_size": null,
            "content_type": "audio/wav",
            "duration": null,
            "file_size_mb": 0.0,
            "duration_formatted": "00:00"
        }
    ],
    "total": 4,
    "skip": 0,
    "limit": 100,
    "has_next": false,
    "has_previous": false
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Body

Modified at 2025-07-22 11:32:06
Previous
Webhook
Next
Get Voice
Built with