Colossyan API
  • Welcome
  • Getting Started
    • Quickstart
    • Extracting request bodies from the web-editor
  • Basics
    • Authentication
    • Endpoints
    • Video Generation
      • Generating using a template
      • Generating a video manually
      • Receiving a generated video
    • Using template variables
      • Script template variables
      • Text template variables
    • Generated videos
      • Retrieve a video
      • Delete a video
    • Video generation job
      • Retrieve video generation job
      • Delete video generation job
    • Assets
      • Actors
      • Voices
  • Advanced
    • Advanced use-cases
    • Timing
  • Experimental
    • Knowledge to draft
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Basics
  2. Assets

Voices

PreviousActorsNextAdvanced use-cases

Last updated 4 months ago

Was this helpful?

Voices

Retrieve a list of voices

get

Fetches a list of voices that the user has access to.

Authorizations
Responses
200
A list of voices
application/json
401
Unauthorized. Authentication required.
500
Internal server error.
get
GET /api/v1/assets/voices HTTP/1.1
Host: app.colossyan.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "sample": "text",
    "genders": [
      "text"
    ],
    "characters": [
      "text"
    ],
    "name": "text",
    "ages": [
      "text"
    ],
    "features": {
      "pitch": true,
      "emphasize": true,
      "pause": true,
      "speed": true
    },
    "style": "text",
    "scenarios": [
      "text"
    ],
    "displayName": "text",
    "languages": [
      "text"
    ],
    "isClonedVoice": true
  }
]
  • Voices
  • GETRetrieve a list of voices