cURL
curl --request GET \
--url https://api.transcribetube.com/api/list \
--header 'api-key: <api-key>'import requests
url = "https://api.transcribetube.com/api/list"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.transcribetube.com/api/list', 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.transcribetube.com/api/list",
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-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.transcribetube.com/api/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-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.transcribetube.com/api/list")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.transcribetube.com/api/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Rick Astley - Never Gonna Give You Up",
"youtubeId": "dQw4w9WgXcQ",
"createdAt": "2023-11-07T05:31:56Z"
}
]{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Project
List Projects
GET
/
api
/
list
cURL
curl --request GET \
--url https://api.transcribetube.com/api/list \
--header 'api-key: <api-key>'import requests
url = "https://api.transcribetube.com/api/list"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.transcribetube.com/api/list', 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.transcribetube.com/api/list",
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-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.transcribetube.com/api/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-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.transcribetube.com/api/list")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.transcribetube.com/api/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Rick Astley - Never Gonna Give You Up",
"youtubeId": "dQw4w9WgXcQ",
"createdAt": "2023-11-07T05:31:56Z"
}
]{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}List all projects belonging to the API user, newest first, in pages of 100.
Request
| Query param | Type | Default | Description |
|---|---|---|---|
page | integer ≥ 1 | 1 | Page number. Page size is fixed at 100. |
Examples
curl "https://api.transcribetube.com/api/list?page=1" \
-H "api-key: $TRANSCRIBETUBE_API_KEY"
const res = await fetch("https://api.transcribetube.com/api/list?page=1", {
headers: { "api-key": process.env.TRANSCRIBETUBE_API_KEY },
});
const projects = await res.json();
import os, requests
res = requests.get(
"https://api.transcribetube.com/api/list",
params={"page": 1},
headers={"api-key": os.environ["TRANSCRIBETUBE_API_KEY"]},
)
projects = res.json()
Response
200 OK — array of projects (one page):
[
{
"id": "f3c1e7a0-2b48-4a91-8a30-9b1c2d3e4f50",
"name": "Rick Astley - Never Gonna Give You Up",
"youtubeId": "dQw4w9WgXcQ",
"state": "done",
"createdAt": "2026-01-15T14:30:00.000Z"
},
{
"id": "a812b3c4-5d6e-7f8a-9b0c-1d2e3f4a5b60",
"name": "Some other video",
"youtubeId": "abc123XYZ_w",
"state": "transcription",
"createdAt": "2026-01-15T14:25:00.000Z"
}
]
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Project ID, used in GET /api/detail/{id}. |
name | string | Video title from YouTube at submission time. |
youtubeId | string | The YouTube video ID. |
state | enum | upload | transcription | done | error. See Lifecycle. |
createdAt | string (ISO 8601) | When the project was created. |
Pagination
There is no total count orhasMore field. To detect the last page, request until you receive an empty array. Pages are 1-indexed.
let page = 1;
while (true) {
const res = await fetch(`https://api.transcribetube.com/api/list?page=${page}`, {
headers: { "api-key": apiKey },
});
const batch = await res.json();
if (batch.length === 0) break;
process(batch);
page++;
}
Errors
| Status | When |
|---|---|
| 400 | page < 1 or not a number. |
| 401 | Missing or invalid api-key header. |
Authorizations
Query Parameters
Page number for pagination
⌘I

