curl "https://api.telzino.com/v1/stt-providers" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://api.telzino.com/v1/stt-providers', {
headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN' }
});
const { data } = await response.json();
console.log(data); // [{ id: 'deepgram', name: 'Deepgram', ... }]
import requests
response = requests.get(
'https://api.telzino.com/v1/stt-providers',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
providers = response.json()['data']
{
"data": [
{
"id": "deepgram",
"name": "Deepgram",
"description": "Real-time speech-to-text powered by Deepgram Nova"
}
]
}
{
"error": "invalid_token",
"error_description": "Missing or invalid authorization token"
}
STT Providers
List STT Providers
Returns a list of available speech-to-text (STT) providers that can be used when creating or updating agents
GET
/
v1
/
stt-providers
curl "https://api.telzino.com/v1/stt-providers" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://api.telzino.com/v1/stt-providers', {
headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN' }
});
const { data } = await response.json();
console.log(data); // [{ id: 'deepgram', name: 'Deepgram', ... }]
import requests
response = requests.get(
'https://api.telzino.com/v1/stt-providers',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
providers = response.json()['data']
{
"data": [
{
"id": "deepgram",
"name": "Deepgram",
"description": "Real-time speech-to-text powered by Deepgram Nova"
}
]
}
{
"error": "invalid_token",
"error_description": "Missing or invalid authorization token"
}
Use this endpoint to discover valid values for the
sttModel field when creating or updating agents.
curl "https://api.telzino.com/v1/stt-providers" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
const response = await fetch('https://api.telzino.com/v1/stt-providers', {
headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN' }
});
const { data } = await response.json();
console.log(data); // [{ id: 'deepgram', name: 'Deepgram', ... }]
import requests
response = requests.get(
'https://api.telzino.com/v1/stt-providers',
headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
)
providers = response.json()['data']
{
"data": [
{
"id": "deepgram",
"name": "Deepgram",
"description": "Real-time speech-to-text powered by Deepgram Nova"
}
]
}
{
"error": "invalid_token",
"error_description": "Missing or invalid authorization token"
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Provider identifier — use this as the sttModel value when creating or updating agents |
name | string | Display name of the provider |
description | string | Brief description of the provider’s capabilities |
⌘I
