You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/analyst-reports-raw-text-api_api.spec.yml
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,21 @@ info:
8
8
paths:
9
9
/analyst/reports/raw-text:
10
10
get:
11
-
description: Retrieves raw text content from professional analyst research reports. Returns full-text analyst reports, research notes, and investment recommendations from financial institutions. Includes report metadata, rating changes, price targets, and detailed analysis. Essential for accessing institutional research and analyst sentiment.
11
+
description: Retrieves raw text content from professional analyst research
12
+
reports. Returns full-text analyst reports, research notes, and
13
+
investment recommendations from financial institutions. Includes report
14
+
metadata, rating changes, price targets, and detailed analysis.
15
+
Essential for accessing institutional research and analyst sentiment.
12
16
operationId: get-analyst-reports-raw-text-data
13
17
parameters:
14
-
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 = second page, etc.). Default: 0"
18
+
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 =
19
+
second page, etc.). Default: 0"
15
20
in: query
16
21
name: page
17
22
schema:
18
23
type: integer
19
-
- description: "Number of results per page. Default: 100. Maximum: 100. Returns most recent reports first."
24
+
- description: "Number of results per page. Default: 100. Maximum: 100. Returns
Copy file name to clipboardExpand all lines: openapi/earnings-call-transcripts-api_api.spec.yml
+35-16Lines changed: 35 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,24 @@
1
1
openapi: 3.0.0
2
2
info:
3
3
contact: {}
4
-
description: This REST API provides endpoints to search for earnings call transcripts and get earnings call transcript details.
4
+
description: This REST API provides endpoints to search for earnings call
5
+
transcripts and get earnings call transcript details.
5
6
termsOfService: http://swagger.io/terms/
6
7
title: Earnings Call Transcripts API
7
8
version: 1.0.0
8
9
paths:
9
10
/api/v1/earnings-call-transcripts:
10
11
get:
11
-
description: Retrieves earnings call transcripts for specified companies or call IDs. Returns full text transcripts of quarterly and annual earnings calls including Q&A sessions, speaker identification, and timestamps. Use date filters to retrieve transcripts from specific reporting periods or filter by ticker symbols for company-specific earnings discussions.
12
+
description: Retrieves earnings call transcripts for specified companies or call
13
+
IDs. Returns full text transcripts of quarterly and annual earnings
14
+
calls including Q&A sessions, speaker identification, and timestamps.
15
+
Use date filters to retrieve transcripts from specific reporting periods
16
+
or filter by ticker symbols for company-specific earnings discussions.
12
17
operationId: get-earnings-call-transcripts
13
18
parameters:
14
-
- description: Comma-separated list of stock ticker symbols to filter earnings call transcripts (e.g., AAPL,MSFT,GOOGL). Returns all transcripts for these companies.
19
+
- description: Comma-separated list of stock ticker symbols to filter earnings
20
+
call transcripts (e.g., AAPL,MSFT,GOOGL). Returns all transcripts
21
+
for these companies.
15
22
in: query
16
23
name: tickers
17
24
style: form
@@ -20,7 +27,9 @@ paths:
20
27
type: array
21
28
items:
22
29
type: string
23
-
- description: Comma-separated list of specific call IDs to retrieve. Use this to fetch transcripts for known earnings call identifiers. Takes precedence over ticker filtering.
30
+
- description: Comma-separated list of specific call IDs to retrieve. Use this to
31
+
fetch transcripts for known earnings call identifiers. Takes
32
+
precedence over ticker filtering.
24
33
in: query
25
34
name: call_id
26
35
style: form
@@ -29,29 +38,34 @@ paths:
29
38
type: array
30
39
items:
31
40
type: string
32
-
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 = second page, etc.). Default: 0"
41
+
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 =
42
+
second page, etc.). Default: 0"
33
43
in: query
34
44
name: page
35
45
schema:
36
46
type: integer
37
-
- description: "Number of results per page. Default: 5. Maximum: 1000. Use larger page sizes for bulk data retrieval."
47
+
- description: "Number of results per page. Default: 5. Maximum: 1000. Use larger
48
+
page sizes for bulk data retrieval."
38
49
in: query
39
50
name: pagesize
40
51
schema:
41
52
type: integer
42
-
- description: Start date filter in YYYY-MM-DD format (e.g., 2024-01-01). Returns transcripts from earnings calls on or after this date.
53
+
- description: Start date filter in YYYY-MM-DD format (e.g., 2024-01-01). Returns
54
+
transcripts from earnings calls on or after this date.
43
55
in: query
44
56
name: date_from
45
57
schema:
46
58
type: string
47
-
- description: End date filter in YYYY-MM-DD format (e.g., 2024-12-31). Returns transcripts from earnings calls on or before this date.
59
+
- description: End date filter in YYYY-MM-DD format (e.g., 2024-12-31). Returns
60
+
transcripts from earnings calls on or before this date.
48
61
in: query
49
62
name: date_to
50
63
schema:
51
64
type: string
52
65
responses:
53
66
"200":
54
-
description: Array of earnings call transcript summaries with full text and metadata
67
+
description: Array of earnings call transcript summaries with full text and
68
+
metadata
55
69
content:
56
70
application/json:
57
71
schema:
@@ -81,10 +95,16 @@ paths:
81
95
- Earnings Call Transcripts
82
96
/api/v1/earnings-call-transcripts/audio:
83
97
get:
84
-
description: Retrieves downloadable audio file URLs for earnings call recordings. Returns signed URLs for accessing full audio recordings of quarterly and annual earnings calls. Audio files include complete earnings presentations and Q&A sessions. URLs are time-limited and securely signed for authorized access.
98
+
description: Retrieves downloadable audio file URLs for earnings call
99
+
recordings. Returns signed URLs for accessing full audio recordings of
100
+
quarterly and annual earnings calls. Audio files include complete
101
+
earnings presentations and Q&A sessions. URLs are time-limited and
- description: Comma-separated list of stock ticker symbols to filter audio files (e.g., AAPL,MSFT,GOOGL). Returns audio files for all earnings calls from these companies.
105
+
- description: Comma-separated list of stock ticker symbols to filter audio files
106
+
(e.g., AAPL,MSFT,GOOGL). Returns audio files for all earnings calls
107
+
from these companies.
88
108
in: query
89
109
name: tickers
90
110
style: form
@@ -93,7 +113,8 @@ paths:
93
113
type: array
94
114
items:
95
115
type: string
96
-
- description: Comma-separated list of specific call IDs to retrieve audio files for. Use this to fetch audio for known earnings call identifiers.
116
+
- description: Comma-separated list of specific call IDs to retrieve audio files
117
+
for. Use this to fetch audio for known earnings call identifiers.
97
118
in: query
98
119
name: call_id
99
120
style: form
@@ -102,7 +123,8 @@ paths:
102
123
type: array
103
124
items:
104
125
type: string
105
-
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 = second page, etc.). Default: 0"
126
+
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 =
Copy file name to clipboardExpand all lines: openapi/logo-api_api.spec.yml
+35-17Lines changed: 35 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -11,18 +11,25 @@ paths:
11
11
description: Bulk logos sync
12
12
operationId: logo-bulk-sync
13
13
parameters:
14
-
- description: Comma-separated list of security identifiers or exchange MIC codes (for v2.1 exchange logos). Type depends on search_keys_type parameter.
14
+
- description: Comma-separated list of security identifiers or exchange MIC codes
15
+
(for v2.1 exchange logos). Type depends on search_keys_type
16
+
parameter.
15
17
in: query
16
18
name: search_keys
17
19
required: true
18
20
schema:
19
21
type: string
20
-
- description: "Type of identifier being searched. Supported types: symbol (default), cik, cusip, isin, exchange (v2.1 only)"
22
+
- description: "Type of identifier being searched. Supported types: symbol
Copy file name to clipboardExpand all lines: openapi/newsquantified-api_api.spec.yml
+23-11Lines changed: 23 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -8,40 +8,55 @@ info:
8
8
paths:
9
9
/api/v2/newsquantified:
10
10
get:
11
-
description: Retrieves quantified news analytics data with sentiment scores, relevance metrics, and market impact indicators. Returns structured data analyzing the quantitative aspects of news coverage including sentiment polarity, article counts, trending scores, and ticker-specific metrics. Use this endpoint to access machine-readable news analytics for algorithmic trading and quantitative research.
11
+
description: Retrieves quantified news analytics data with sentiment scores,
12
+
relevance metrics, and market impact indicators. Returns structured data
13
+
analyzing the quantitative aspects of news coverage including sentiment
14
+
polarity, article counts, trending scores, and ticker-specific metrics.
15
+
Use this endpoint to access machine-readable news analytics for
16
+
algorithmic trading and quantitative research.
12
17
operationId: get-newsquantified-data
13
18
parameters:
14
-
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 = second page, etc.). Default: 0"
19
+
- description: "Page number for pagination. Zero-indexed (0 = first page, 1 =
20
+
second page, etc.). Default: 0"
15
21
in: query
16
22
name: page
17
23
schema:
18
24
type: integer
19
-
- description: "Number of results per page. Default: 1000. Maximum: 1000. Returns most recent data first."
25
+
- description: "Number of results per page. Default: 1000. Maximum: 1000. Returns
26
+
most recent data first."
20
27
in: query
21
28
name: pagesize
22
29
schema:
23
30
type: integer
24
-
- description: Unix timestamp in seconds (UTC). Returns newsquantified data updated after this timestamp. Use for incremental updates.
31
+
- description: Unix timestamp in seconds (UTC). Returns newsquantified data
32
+
updated after this timestamp. Use for incremental updates.
25
33
in: query
26
34
name: updated_since
27
35
schema:
28
36
type: integer
29
-
- description: Comma-separated list of stock ticker symbols to filter results (e.g., AAPL,MSFT,TSLA). Returns analytics for specified securities only.
37
+
- description: Comma-separated list of stock ticker symbols to filter results
38
+
(e.g., AAPL,MSFT,TSLA). Returns analytics for specified securities
39
+
only.
30
40
in: query
31
41
name: symbols
32
42
schema:
33
43
type: string
34
-
- description: Single date in YYYY-MM-DD format (e.g., 2024-12-30). Shorthand for filtering when date_from and date_to are the same. Returns data for this specific date.
44
+
- description: Single date in YYYY-MM-DD format (e.g., 2024-12-30). Shorthand for
45
+
filtering when date_from and date_to are the same. Returns data for
46
+
this specific date.
35
47
in: query
36
48
name: date
37
49
schema:
38
50
type: string
39
-
- description: Start date in YYYY-MM-DD format (e.g., 2024-01-01). Returns data from this date forward. Use with date_to for date range queries.
51
+
- description: Start date in YYYY-MM-DD format (e.g., 2024-01-01). Returns data
52
+
from this date forward. Use with date_to for date range queries.
40
53
in: query
41
54
name: date_from
42
55
schema:
43
56
type: string
44
-
- description: End date in YYYY-MM-DD format (e.g., 2024-12-31). Returns data up to and including this date. Use with date_from for date range queries.
57
+
- description: End date in YYYY-MM-DD format (e.g., 2024-12-31). Returns data up
58
+
to and including this date. Use with date_from for date range
0 commit comments