POST
/
v1
/
visemes
curl --request POST \
  --url https://api.mascot.bot/v1/visemes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "audio": "UklGRiQAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQAAAAA=",
  "sample_rate": 16000
}'
"data: '{\"visemes\":[{\"visemeId\":1,\"offset\":0.1},{\"visemeId\":2,\"offset\":0.2}],\"chunk_progress\":\"1/10\",\"chunk_duration_ms\":100}'\n"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
audio
string
required

Base64 encoded audio data

Example:

"UklGRiQAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQAAAAA="

sample_rate
integer
default:16000

Audio sample rate in Hz

Example:

16000

Response

200
text/event-stream
Successful response streams viseme predictions using Server-Sent Events. Each event contains viseme data for a processed audio chunk.

Server-Sent Events stream with the following format:

  • Each event starts with "data: " prefix followed by JSON
  • Example normal event: data: {"visemes":[...],"chunk_progress":"1/10","chunk_duration_ms":100}
  • Example error event: error: {"message":"Error message","chunk_id":5}