Converter um audio para texto com provider OpenAI

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.neppo.com.br/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Neppo API MCP server": {
    "url": "https://api-docs.neppo.com.br/mcp"
  }
}

Close
POST /voicemodelapi/1.0/stt

Esta é uma api para usar o provider OpenAI, para fazer a chamada utilize o modelo: whisper-1.

Headers

  • accept string

    e.g. application/json

Responses

  • 200 application/json

    Requisição processada com sucesso. Retorna os dados correspondentes ao filtro informado.

    Hide response attribute Show response attribute object
    • recognized_text string
  • 401 application/json

    Token de autenticação ausente ou inválido. Envie o header Authorization: Bearer {token}.

    Hide response attribute Show response attribute object
    • status string
  • 403 application/json

    Acesso negado. O token informado não possui permissão para este recurso.

    Hide response attribute Show response attribute object
    • status string
  • 404 application/json

    Recurso não encontrado para os parâmetros informados.

    Hide response attribute Show response attribute object
    • status string
POST /voicemodelapi/1.0/stt
curl \
 --request POST 'https://api.neppo.com.br/voicemodelapi/1.0/stt' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "accept: application/json"
Response examples (200)
{
  "recognized_text": "Olá, seja bem-vindo ao Neppo Omnichannel, uma poderosa plataforma digital multicanal que oferece suporte a uma variedade de recursos para aprimorar a comunicação empresarial."
}
Response examples (401)
{
  "status": "Unauthorized"
}
Response examples (403)
{
  "status": "Forbidden"
}
Response examples (404)
{
  "status": "Not Found"
}