Filings
Find filings
Find SEC filings
GET /filings-v1
Parameter | Type | DataType | Description |
---|---|---|---|
bloomberg_ticker | query | string | Filter filings to one or more bloomberg tickers (comma-separated) |
isin | query | string | Filter filings to one or more ISINs (comma-separated) |
ric | query | string | Filter filings to one or more Reuters/Refinitiv RICs (comma-separated) |
permid | query | string | Filter filings to one or more PermIDs (comma-separated) |
ticker | query | string | Filter filings to one or more tickers (comma-separated) |
form_number | query | string | Filter filings to a specific filing number (e.g 10-K, 10-Q) |
start_date | query | datetime | Fetch filings on or after this date (defaults to 26 weeks ago) |
end_date | query | datetime | Fetch filings on or before this date (defaults to today) |
page | query | integer | The page of results to return |
page_size | query | integer | The size of pages to return (default: 100, max: 2500) |
NOTE
- Only one of the identifiers (bloomberg_ticker, isin, permid, ric, or ticker) should be used per request. Using multiple equity identifiers will end up resolving only one of them.
Request
https://premium.aiera.com/api/filings-v1/?bloomberg_ticker=AMZN:US&form_number=10-Q&start_date=2024-01-01&end_date=2025-12-31
Response
[
{
"filing_id": 8211127,
"title": "Amazon - 10-Q",
"published_date": "2025-05-01T18:14:53",
"form_number": "10-Q",
"form_name": "Quarterly Report",
"filing_organization": "sec",
"filing_system": "edgar",
"is_amendment": 0,
"period_end_date": "2025-03-31T00:00:00",
"release_date": "2025-05-01T18:14:53",
"arrival_date": "2025-05-01T18:14:53",
"pulled_date": "2025-05-20T22:45:04",
"pdf_url": "https://premium.aiera.com/api/filings-v1/8211127/pdf",
"aiera_url": "https://dashboard.aiera.com/companies/1/activity/filings?tabs[0]=fl|25583273",
"datafiles_synced": true,
"json_synced": true
},
{
"filing_id": 7968743,
"title": "AMAZON COM INC - 10-Q",
"published_date": "2024-10-31T18:44:54",
"form_number": "10-Q",
"form_name": "Quarterly Report",
"filing_organization": "sec",
"filing_system": "edgar",
"is_amendment": 0,
"period_end_date": "2024-09-30T00:00:00",
"release_date": "2024-10-31T18:44:54",
"arrival_date": "2024-10-31T18:44:54",
"pulled_date": "2024-11-26T17:45:03",
"pdf_url": "https://premium.aiera.com/api/filings-v1/7968743/pdf",
"aiera_url": "https://dashboard.aiera.com/companies/1/activity/filings?tabs[0]=fl|24978786",
"datafiles_synced": true,
"json_synced": true
},
{
"filing_id": 7845061,
"title": "AMAZON COM INC - 10-Q",
"published_date": "2024-08-01T18:39:50",
"form_number": "10-Q",
"form_name": "Quarterly Report",
"filing_organization": "sec",
"filing_system": "edgar",
"is_amendment": 0,
"period_end_date": "2024-06-30T00:00:00",
"release_date": "2024-08-01T18:39:50",
"arrival_date": "2024-08-01T18:39:50",
"pulled_date": "2024-08-13T13:45:03",
"pdf_url": "https://premium.aiera.com/api/filings-v1/7845061/pdf",
"aiera_url": "https://dashboard.aiera.com/companies/1/activity/filings?tabs[0]=fl|24658726",
"datafiles_synced": true,
"json_synced": true
},
{
"filing_id": 7599221,
"title": "Amazon - 10-Q",
"published_date": "2024-04-30T18:38:29",
"form_number": "10-Q",
"form_name": "Quarterly Report",
"filing_organization": "sec",
"filing_system": "edgar",
"is_amendment": 0,
"period_end_date": "2024-03-31T00:00:00",
"release_date": "2024-04-30T18:38:29",
"arrival_date": "2024-04-30T18:38:29",
"pulled_date": "2024-05-02T04:01:58",
"pdf_url": "https://premium.aiera.com/api/filings-v1/7599221/pdf",
"aiera_url": "https://dashboard.aiera.com/companies/1/activity/filings?tabs[0]=fl|23719487",
"datafiles_synced": true,
"json_synced": true
}
]
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/filings-v1' \
--header 'X-API-Key: xxx'
Python
import requests
requests.request("GET", "https://premium.aiera.com/api/filings-v1", headers={"X-API-Key": "xxx"})