Model endpointsByteDanceSeed asr 2.0

Transcribe audio with bytedance/seed-asr-2.0

Transcribes speech to text using the bytedance/seed-asr-2.0 model.

POST
/api/v1/model/generateAudio

Authorization

BearerAuth
AuthorizationBearer <token>

API key is required to authorize requests. Create a key in the Atlas Cloud dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/model/generateAudio" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/seed-asr-2.0",    "audio_url": "string"  }'
{  "model": "bytedance/seed-asr-2.0",  "created_at": "2019-08-24T14:15:22Z",  "id": "string",  "outputs": [    "string"  ],  "status": "string",  "urls": {},  "stt_result": {    "text": "string",    "duration": 0,    "words": [      {        "text": "string",        "start": 0,        "end": 0,        "type": "string",        "speaker_id": "string"      }    ]  }}

Last updated on