Filings
Get filing by type
Get SEC filing by type
GET /filings-v1/{filing_id}/{pdf|json}
Request
https://premium.aiera.com/api/filings-v1/7968743/json
Response
{
"CoverPage": {
"DocumentType": "10-Q",
"DocumentQuarterlyReport": "true",
"DocumentPeriodEndDate": "2024-09-30",
"DocumentTransitionReport": "false",
"EntityFileNumber": "000-22513",
"EntityRegistrantName": "AMAZON.COM, INC.",
"EntityIncorporationStateCountryCode": "DE",
"EntityTaxIdentificationNumber": "91-1646860",
"EntityAddressAddressLine1": "410 Terry Avenue North",
"EntityAddressCityOrTown": "Seattle,",
"EntityAddressStateOrProvince": "WA",
"EntityAddressPostalZipCode": "98109-5210",
"CityAreaCode": "206",
"LocalPhoneNumber": "266-1000",
"Security12bTitle": "Common Stock, par value $.01 per share",
"TradingSymbol": "AMZN",
"SecurityExchangeName": "NASDAQ",
"EntityCurrentReportingStatus": "Yes",
"EntityInteractiveDataCurrent": "Yes",
"EntityFilerCategory": "Large Accelerated Filer",
"EntitySmallBusiness": "false",
"EntityEmergingGrowthCompany": "false",
"EntityShellCompany": "false",
"EntityCommonStockSharesOutstanding": {
"decimals": "INF",
"unitRef": "shares",
"period": {
"instant": "2024-10-18"
},
"value": "10515011008"
},
"AmendmentFlag": "false",
"DocumentFiscalYearFocus": "2024",
"DocumentFiscalPeriodFocus": "Q3",
"EntityCentralIndexKey": "0001018724",
"CurrentFiscalYearEndDate": "--12-31"
},
"StatementsOfCashFlows": {
"CashCashEquivalentsRestrictedCashAndRestrictedCashEquivalents": [
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2023-06-30"
},
"value": "50067000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2024-06-30"
},
"value": "71673000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2022-12-31"
},
"value": "54253000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2023-12-31"
},
"value": "73890000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2022-09-30"
},
"value": "35178000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2023-09-30"
},
"value": "50081000000"
},
{
"decimals": "-6",
"unitRef": "usd",
"period": {
"instant": "2024-09-30"
},
"value": "78677000000"
}
],
...
},
...
}
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/filings-v1/{filing_id}/{pdf|json}' \
--header 'X-API-Key: xxx'
Python
import requests
requests.request("GET", "https://premium.aiera.com/api/filings-v1/{filing_id}/{pdf|json}", headers={"X-API-Key": "xxx"})