Skip to content

blab-fast-tr-naz

What is this model?

A model hosted by Qevron on our own GPU infrastructure.

Capability & type

CapabilityText to Speech (TTS)
Model typeText-to-speech (TTS) (type=7)
Base modelPiper
Providerarpanet (local / self-hosted)
Streaming✓ supported

Endpoint

POST /v1/audio/speech

Base URL: https://app.qevron.ai/v1

Authentication

Every request needs the Authorization: Bearer <KEY> header.

Authorization: Bearer <KEY>

Request schema & parameters

ParameterTypeRequiredDescription
modelstringblab-fast-tr-naz
inputstringText to synthesize
voicestringVoice id
response_formatstringwav

Response schema

audio/wav (binary) — the response body is the audio stream.

Streaming

Add "stream": true; the server replies incrementally over Server-Sent Events.

Code examples

curl

bash
curl https://app.qevron.ai/v1/audio/speech \
  -H "Authorization: Bearer $QEVRON_KEY" -H "Content-Type: application/json" \
  -d '{"model": "blab-fast-tr-naz", "input": "Merhaba dünya", "voice": "default", "response_format": "wav"}' \
  --output speech.wav

Python

python
from openai import OpenAI
client = OpenAI(api_key="$QEVRON_KEY", base_url="https://app.qevron.ai/v1")
r = client.audio.speech.create(model="blab-fast-tr-naz", input="Merhaba dünya", voice="default")
r.stream_to_file("speech.wav")

Pricing

InputOutputUnit
$0.0011K tokens

Rate limits

RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.

Qevron — AI gateway. Arpanet / OpenAI / Anthropic / Gemini compatible.