Get Transcript by ID
curl --request GET \
--url https://api.aries.com/v1/stock/transcripts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aries.com/v1/stock/transcripts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aries.com/v1/stock/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://api.aries.com/v1/stock/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 => [
"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.aries.com/v1/stock/transcripts"
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.aries.com/v1/stock/transcripts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aries.com/v1/stock/transcripts")
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{
"symbol": "AAPL",
"transcript": [
{
"name": "Operator",
"speech": [
"Good day, everyone. Welcome to the Apple Incorporated First Quarter Fiscal Year 2020 Earnings Conference Call. Today's conference is being recorded.",
"At this time for opening remarks and introductions, I would like to turn the call over to Tejas Gala, Senior Analyst, Corporate Finance and Investor Relations. Please go ahead."
],
"session": "management_discussion"
}
],
"participant": [
{
"name": "Tejas Gala",
"description": "Senior Analyst, Corporate Finance and IR",
"role": "executive"
}
],
"audio": "https://api.aries.com/v1/stock/media/presentation/api/redirect?urlType=transcripts-audio&id=AAPL_162777",
"id": "AAPL_162777",
"title": "AAPL - Earnings call Q1 2020",
"time": "2020-01-29 02:36:41",
"year": 2020,
"quarter": 1
}Stock Alternative
Transcript by ID
Retrieve a single earnings call transcript by id. Returns full transcript content and audio URL.
Use Case: Show transcript text and play audio for a specific earnings call after selecting from the transcripts list.
GET
/
v1
/
stock
/
transcripts
Get Transcript by ID
curl --request GET \
--url https://api.aries.com/v1/stock/transcripts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aries.com/v1/stock/transcripts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aries.com/v1/stock/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://api.aries.com/v1/stock/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 => [
"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.aries.com/v1/stock/transcripts"
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.aries.com/v1/stock/transcripts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aries.com/v1/stock/transcripts")
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{
"symbol": "AAPL",
"transcript": [
{
"name": "Operator",
"speech": [
"Good day, everyone. Welcome to the Apple Incorporated First Quarter Fiscal Year 2020 Earnings Conference Call. Today's conference is being recorded.",
"At this time for opening remarks and introductions, I would like to turn the call over to Tejas Gala, Senior Analyst, Corporate Finance and Investor Relations. Please go ahead."
],
"session": "management_discussion"
}
],
"participant": [
{
"name": "Tejas Gala",
"description": "Senior Analyst, Corporate Finance and IR",
"role": "executive"
}
],
"audio": "https://api.aries.com/v1/stock/media/presentation/api/redirect?urlType=transcripts-audio&id=AAPL_162777",
"id": "AAPL_162777",
"title": "AAPL - Earnings call Q1 2020",
"time": "2020-01-29 02:36:41",
"year": 2020,
"quarter": 1
}Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Transcript id (from transcripts list). |
Response
Success returns200 OK with a JSON object containing the transcript (title, participant, transcript segments with speech, audio URL).
Errors: 400 when id is missing, 401 unauthorized, 404 when transcript not found, 500 server error.Authorizations
OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.
Query Parameters
Unique identifier for an earnings-call transcript. Obtain it from /v1/stock/transcripts/list for the symbol you want.
Was this page helpful?