Documentação

Pedir URL para enviar arquivo grande

POST
/uploads

Para arquivos acima de 100 MB (até 1 GB). Envie o arquivo com PUT na url em até expires_in segundos, com o mesmo Content-Length, e depois chame POST /transcriptions com upload_id.

Autorização

bearerAuth
AuthorizationBearer <token>

Em: header

Corpo da requisição

application/json

Tipos em TypeScript

Use the request body type in TypeScript.

Resposta

application/json

application/json

application/json

curl -X POST "https://example.com/uploads" \  -H "Content-Type: application/json" \  -d '{    "content_length": 734003200  }'
{  "upload_id": "up_4fQ2mZ8kLp1XvR7tNc0bYd",  "url": "https://armazenamento.exemplo/uploads/up_4fQ2mZ8kLp1XvR7tNc0bYd?assinatura=...",  "method": "PUT",  "expires_in": 300}