curl --request GET \
--url https://api.slng.ai/v1/catalog/models/{model_code} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.slng.ai/v1/catalog/models/{model_code}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.slng.ai/v1/catalog/models/{model_code}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.slng.ai/v1/catalog/models/{model_code}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.slng.ai/v1/catalog/models/{model_code}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.slng.ai/v1/catalog/models/{model_code}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.slng.ai/v1/catalog/models/{model_code}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"code": "slng/rime/arcana:3-en",
"name": "Arcana V3 English",
"service_type": "tts",
"provider_code": "rime",
"provider": {
"name": "Rime",
"logo_url": "https://assets.slng.ai/provider-logos/rime-9d9ccf23.jpg",
"code": "rime",
"created_at": "2026-03-25T12:43:28.731Z",
"updated_at": "2026-04-14T16:14:02.621Z"
},
"hosted_by": "slng",
"short_description": "Ultra-realistic, expressive voices with low latency and native multilingual code-switching.",
"long_description": "Arcana v3 delivers low-latency conversational TTS with multilingual code-switching and word-level timestamps.",
"best_for": "Voice Assistants, Business Telephony, IVR, TTS",
"use_cases": [
"Call centers",
"voice assistant",
"IVR"
],
"capabilities": [
"Streaming",
"Expressiveness",
"Latency"
],
"languages": [
"en"
],
"streaming": true,
"batch": false,
"voice_count": 0,
"api_path": "/v1/tts/slng/rime/arcana:3-en",
"docs_url": "https://docs.slng.ai/api-reference/endpoints/rime-arcana-v3/arcana-v3-english-http",
"tags": [],
"available_regions": [
"ap-southeast-2",
"asia-south1",
"eu-north-1"
],
"region_details": [
{
"code": "ap-southeast-2",
"country": "Australia",
"world_part_code": "au",
"latency_ms": 240
}
],
"supported_protocols": [
"https",
"wss"
],
"voices": [],
"similar_models": [
{
"code": "slng/deepgram/aura:2-en",
"name": "Aura 2 English",
"service_type": ""
}
],
"pricing": {
"min_price": 100,
"unit": "microdollars_per_min"
}
}Get a catalog model
Retrieve a single model from the SLNG catalog by its code. The code may contain slashes and colons (for example slng/rime/arcana:3-en). Authentication is optional — an API key personalizes pricing and region availability for your organisation.
curl --request GET \
--url https://api.slng.ai/v1/catalog/models/{model_code} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.slng.ai/v1/catalog/models/{model_code}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.slng.ai/v1/catalog/models/{model_code}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.slng.ai/v1/catalog/models/{model_code}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.slng.ai/v1/catalog/models/{model_code}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.slng.ai/v1/catalog/models/{model_code}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.slng.ai/v1/catalog/models/{model_code}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"code": "slng/rime/arcana:3-en",
"name": "Arcana V3 English",
"service_type": "tts",
"provider_code": "rime",
"provider": {
"name": "Rime",
"logo_url": "https://assets.slng.ai/provider-logos/rime-9d9ccf23.jpg",
"code": "rime",
"created_at": "2026-03-25T12:43:28.731Z",
"updated_at": "2026-04-14T16:14:02.621Z"
},
"hosted_by": "slng",
"short_description": "Ultra-realistic, expressive voices with low latency and native multilingual code-switching.",
"long_description": "Arcana v3 delivers low-latency conversational TTS with multilingual code-switching and word-level timestamps.",
"best_for": "Voice Assistants, Business Telephony, IVR, TTS",
"use_cases": [
"Call centers",
"voice assistant",
"IVR"
],
"capabilities": [
"Streaming",
"Expressiveness",
"Latency"
],
"languages": [
"en"
],
"streaming": true,
"batch": false,
"voice_count": 0,
"api_path": "/v1/tts/slng/rime/arcana:3-en",
"docs_url": "https://docs.slng.ai/api-reference/endpoints/rime-arcana-v3/arcana-v3-english-http",
"tags": [],
"available_regions": [
"ap-southeast-2",
"asia-south1",
"eu-north-1"
],
"region_details": [
{
"code": "ap-southeast-2",
"country": "Australia",
"world_part_code": "au",
"latency_ms": 240
}
],
"supported_protocols": [
"https",
"wss"
],
"voices": [],
"similar_models": [
{
"code": "slng/deepgram/aura:2-en",
"name": "Aura 2 English",
"service_type": ""
}
],
"pricing": {
"min_price": 100,
"unit": "microdollars_per_min"
}
}Authorizations
API key issued by SLNG. Pass as Authorization: Bearer <token>.
Path Parameters
The model code to retrieve. May contain slashes and colons (for example slng/fish/tts:s2.1-pro).
Query Parameters
Filter models by supported protocol.
https, wss Response
A single catalog model.
A single model in the SLNG catalog.
The unique model code used to address the model in API paths.
"slng/rime/arcana:3-en"
Human-readable display name.
"Arcana V3 English"
The service type the model provides.
stt, tts "tts"
The code of the model's provider.
"rime"
The provider that owns a catalog model.
Show child attributes
Show child attributes
Who hosts the model — slng for SLNG-hosted models, otherwise the third-party provider name.
"slng"
A short one-line description of the model.
A longer description of the model and its capabilities.
A summary of the use cases the model is best suited for.
Tags describing common use cases.
["Call centers", "voice assistant", "IVR"]
Capability tags for the model.
["Streaming", "Expressiveness", "Latency"]
Language codes the model supports.
["en"]
Whether the model supports streaming.
true
Whether the model supports batch (non-streaming) processing.
false
Reported accuracy score, when available.
The number of voices available for the model (TTS only).
0
The API path used to invoke the model.
"/v1/tts/slng/rime/arcana:3-en"
A ready-to-run code example (cURL) for invoking the model.
Ready-to-run code examples for invoking the model in different languages.
Show child attributes
Show child attributes
A link to the model's documentation page.
"https://docs.slng.ai/api-reference/endpoints/rime-arcana-v3/arcana-v3-english-http"
Free-form tags associated with the model.
Region codes where the model is available.
[
"ap-southeast-2",
"asia-south1",
"eu-north-1"
]
Per-region availability and latency/pricing details.
Show child attributes
Show child attributes
The protocols the model can be invoked over.
https, wss ["https", "wss"]
The voices available for the model (TTS only).
Show child attributes
Show child attributes
Models similar to this one.
Show child attributes
Show child attributes
Pricing information for a catalog model.
Show child attributes
Show child attributes