curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts', 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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"created_at": "<string>",
"date": "<string>",
"episode_id": "<string>",
"guests": [
"<string>"
],
"has_timestamps": true,
"hosts": [
"<string>"
],
"id": 123,
"podcast_show_id": 123,
"podcast_show_name": "<string>",
"raw_transcript": "<string>",
"resolved_speakers": {},
"transcript": "<string>",
"transcript_source": "<string>",
"transcript_type": "<string>",
"transcript_url": "<string>",
"updated_at": "<string>"
}
],
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Get Podcast Transcripts
OpenAPI JSON Spec
Retrieve stored official podcast transcripts, newest first.
Filter by podcast_show_id, podcast_show_name or speaker — at least
one is required unless both updated_after and updated_before are supplied.
Update polling selects episode rows within [updated_after, updated_before),
ordered by updated_at ASC, id ASC. Times are Unix seconds; all shows may be
queried with a bounded window. Existing filters intersect that window.
Updates include episode metadata, transcript and attribution changes, not lease/retry bookkeeping.
Show/person metadata has a separate lifecycle. Each item returns the stable
Arrays record id, the publisher episode_id, and RFC3339 updated_at.
For update polling, pass pagination.cursor unchanged with the same window,
and filters. Limit and include_raw may change on retry without restarting.
An omitted cursor with has_more=false means the window is
drained. Start each new window without the old cursor. Offset is not allowed.
This is current-state polling, not a snapshot or deletion/history feed:
overlap windows and reconcile delayed writes; intermediate versions may coalesce.
podcast_show_id comes from /other/podcast/shows. podcast_show_name
takes the name instead and resolves it server-side. The response reports
the show name as podcast_show_name.
speaker matches a person in the returned resolved_speakers, including
host, guest and clip attributions. Registry names and aliases match linked
identities; stored resolved names also match directly. Publisher-only labels
and attributions excluded from the response do not match. Clips are not guests.
resolved_speakers[*].person_id, hosts and guests contain only terminal
person-registry UUIDs, matching /persons. Historical IDs and merged UUIDs
are resolved on read. Unlinked speakers keep their name but omit person_id;
unresolved references are omitted from hosts and guests.
curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts', 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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/other/podcast/transcripts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"created_at": "<string>",
"date": "<string>",
"episode_id": "<string>",
"guests": [
"<string>"
],
"has_timestamps": true,
"hosts": [
"<string>"
],
"id": 123,
"podcast_show_id": 123,
"podcast_show_name": "<string>",
"raw_transcript": "<string>",
"resolved_speakers": {},
"transcript": "<string>",
"transcript_source": "<string>",
"transcript_type": "<string>",
"transcript_url": "<string>",
"updated_at": "<string>"
}
],
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Show identifier from /other/podcast/shows
Show name, resolved to podcast_show_id. A name matching several shows or none is an error naming them, not an empty page; so is one that disagrees with podcast_show_id
Exact resolved speaker name or registry alias (case-insensitive), including clip
Publication day YYYY-MM-DD; same value the response reports as date
Also attach the original file (default false)
Max rows, 1-50 (default 10)
Rows to skip (default 0)
Inclusive episode update bound (Unix seconds); requires updated_before
Exclusive episode update bound (Unix seconds); must exceed updated_after
Opaque update-window continuation; incompatible with offset

