DashboardAPI DocsChangelogSystem StatusMy Account
DashboardAPI DocsChangelogSystem StatusMy Account
  1. VoxFX Effects API
  • Introduction
  • Voice Library
  • API Authentication
  • Text to Speech API
    • WebSocket
    • Generate TTS
      POST
    • List Voices
      POST
  • VoxFX Effects API
    • Generate TTS with VoxFX
      POST
    • List VoxFX Effects
      GET
  • Voice Cloning API
    • Create Voice Clone
      POST
    • List Voice Clones
      GET
    • Get Single Voice
      GET
    • Edit Voice Clone
      PUT
    • Delete Voice Clone
      DELETE
  1. VoxFX Effects API

List VoxFX Effects

GET
https://developer.voicemaker.in/effects/voxfx
Retrieve a categorized list of all VoxFx presets and their available effect controls.
Each preset lists the effects that can be applied and their ranges/defaults.

Request

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

Responses

🟢200OK
application/json
Successful response - array of VoxFx categories and presets
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://developer.voicemaker.in/effects/voxfx' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example response (shortened)
{
    "success": true,
    "data": [
        {
            "categoryName": "Real-World Environments",
            "presets": [
                {
                    "presetId": "67841788096cecfe8b18b2d1",
                    "name": "FM Radio",
                    "effects": [
                        {
                            "key": "low_pitch",
                            "rangeMin": 0,
                            "rangeMax": 100,
                            "rangeDefault": "0",
                            "rangeVariable": ""
                        },
                        {
                            "key": "reverb",
                            "rangeMin": 0,
                            "rangeMax": 100,
                            "rangeDefault": "0",
                            "rangeVariable": ""
                        }
                    ]
                },
                {
                    "presetId": "67841788096cecfe8b18b2d2",
                    "name": "TV Speaker",
                    "effects": []
                }
            ]
        }
    ]
}
Modified at 2025-11-23 04:21:58
Previous
Generate TTS with VoxFX
Next
Create Voice Clone
Built with