Revocalize AI
    Revocalize AI
    • Convert Audio File
      POST
    • Check Task Status
      GET
    • Get Available Models
      GET
    • Create Model
      POST
    • Train Model
      POST

      Get Available Models

      Develop Env
      https://dev.your-api-server.com
      Develop Env
      https://dev.your-api-server.com
      GET
      /models
      The /models endpoint returns the available AI Voice Models for your Revocalize account. Any of the available models can be used in the Voice Synthesis API to create audio generations.

      Request

      Header Params

      Responses

      🟢200Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://dev.your-api-server.com/models' \
      --header 'Authorization: Bearer <token>' \
      --header 'Content-Type: application/json' \
      --data-raw ''
      Response Response Example
      {
        "models": [
          {
            id: "andra",
            name: "Andra",
            gender: "female",
            age: "adult",
            description: "Popular pop singer with a powerful and dynamic vocal range. Her voice is characterized by its soulful quality, agility, and emotive expressiveness.",
            base_language: "en",
            traits: ["nasal", "powerful", "emotive", "dynamic", "soulful"],
            genre: "pop"
            voice_type: "tenor",
            vocal_range: {
              min: "C3",
              max: "C7",
            }
          },
          {
            id: "smiley",
            name: "Smiley",
            gender: "male",
            age: "young adult",
            description: "Romanian musician and producer known for his smooth and versatile vocal style, which ranges from tender and emotive to powerful and dynamic.",
            base_language: "ro",
            traits: ["smooth", "versatile", "emotive", "dynamic", "expressive"],
            genre: "r&b",
            voice_type: "bass",
            vocal_range: {
              min: "E2",
              max: "E4",
            }
          }
        ]
      }
      
      Modified at 2024-07-11 09:54:49
      Previous
      Check Task Status
      Next
      Create Model
      Built with