Limerence
Embed

Transcribe Embed Audio

Transcribe an audio clip for an embedded agent (public, validates origin). Resolves the transcription model from the agent's team configuration.

POST
/embed/{agentId}/transcribe

Transcribe an audio clip for an embedded agent (public, validates origin). Resolves the transcription model from the agent's team configuration.

Authorization

X-API-Key<token>

Use X-API-Key: .

In: header

Path Parameters

agentId*string

Request Body

multipart/form-data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/embed/string/transcribe" \  -F audio="string"
{  "text": "string"}
{  "cause": {    "code": "api/invalid-json",    "detail": "string"  },  "message": "The request body is not valid JSON"}
{  "cause": {    "code": "embed/not-configured",    "detail": "This agent has not been configured for embedding."  },  "message": "Embedding not configured"}
{  "cause": {    "code": "embed/agent-not-found",    "detail": "The requested agent does not exist."  },  "message": "Agent not found"}
{  "cause": {    "code": "api/unsupported-media-type",    "detail": "GET requests cannot have a content type header"  },  "message": "Unsupported Media Type"}