Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url 'https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}' \
--header 'API-Access-Key: <api-key>'import requests
url = "https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}"
headers = {"API-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Access-Key': '<api-key>'}};
fetch('https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}', 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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Access-Key: <api-key>"
],
]);
$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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Access-Key", "<api-key>")
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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}")
.header("API-Access-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Access-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"item_set_id": 123,
"created_at": "2025-05-26T22:25:58.936694+00:00",
"transcription": {
"output": "```\n00:00:02.371 - Продавец: \"Александра, здравствуйте.\"\n00:00:04.513 - Продавец: \"Здравствуйте.\"\n00:00:05.874 - Продавец: \"Меня зовут Анастасия.\"\n00:00:06.775 - Продавец: \"Звоню вам из компании по поводу.\"\n00:00:09.130 - Продавец: \"Оставляли заявку у нас?\"\n00:00:11.909 - Клиент: \"Да-да-да, я оставляла, да.\"\n00:00:14.739 - Продавец: \"Хорошо.\"...```",
"google_doc": "https://docs.google.com/document/..."
}
}{
"detail": "id_project is required"
}{
"detail": "Invalid auth"
}{
"detail": "Invalid input data"
}Получение транскрипции для указанного item_set в проекте. Требуется авторизация.
curl --request GET \
--url 'https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}' \
--header 'API-Access-Key: <api-key>'import requests
url = "https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}"
headers = {"API-Access-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Access-Key': '<api-key>'}};
fetch('https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}', 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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Access-Key: <api-key>"
],
]);
$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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Access-Key", "<api-key>")
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.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}")
.header("API-Access-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.spellit.ai/api/transcription?id_project={id_project}&id_item_set={id_item_set}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Access-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"item_set_id": 123,
"created_at": "2025-05-26T22:25:58.936694+00:00",
"transcription": {
"output": "```\n00:00:02.371 - Продавец: \"Александра, здравствуйте.\"\n00:00:04.513 - Продавец: \"Здравствуйте.\"\n00:00:05.874 - Продавец: \"Меня зовут Анастасия.\"\n00:00:06.775 - Продавец: \"Звоню вам из компании по поводу.\"\n00:00:09.130 - Продавец: \"Оставляли заявку у нас?\"\n00:00:11.909 - Клиент: \"Да-да-да, я оставляла, да.\"\n00:00:14.739 - Продавец: \"Хорошо.\"...```",
"google_doc": "https://docs.google.com/document/..."
}
}{
"detail": "id_project is required"
}{
"detail": "Invalid auth"
}{
"detail": "Invalid input data"
}API-ключ для доступа к эндпоинтам