Skip to main content
POST
/
api
/
v1
/
resources
/
generate
/
audio
Generate audio
curl --request POST \
  --url http://localhost:3000/api/v1/resources/generate/audio \
  --header 'Content-Type: application/json' \
  --cookie nut-session= \
  --data '
{
  "text": "<string>",
  "voice": "<string>",
  "model": "<string>"
}
'
{
  "success": true,
  "data": {
    "resource": {
      "filename": "<string>",
      "type": "image",
      "mimeType": "<string>",
      "size": 123,
      "description": "<string>",
      "proposalId": "<string>",
      "url": "<string>",
      "thumbnailUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Body

application/json
text
string
required

Text to convert to speech

voice
string

Voice ID to use

model
string

AI model to use

Response

Generated audio resource

success
boolean
required
data
object