Company Docs
Get company document
Get a company document
GET /company-docs-v1/{doc_id}
Request
https://premium.aiera.com/api/company-docs-v1/14403
Response
{
"doc_id": 14403,
"company": {
"company_id": 1,
"common_name": "Amazon",
"legal_name": "Amazon.com Inc",
"incorporated_country_code": "US",
"domiciled_country_code": "US"
},
"publish_date": "2024-02-01",
"category": "slide_presentation",
"title": "Q4 2023 Financial Results Conference Call Slides",
"source_url": "https://s2.q4cdn.com/299287126/files/doc_financials/2023/q4/Webslides_Q423_Final.pdf",
"summary": [
"The document is a slide presentation of Amazon's financial results for Q4 2023. It includes net sales data and highlights a year-over-year increase in various business segments, including North America, International, and AWS.",
"It discusses operating income, showing a significant increase from the previous year. The presentation also covers net income, free cash flow, and provides a detailed view of financial changes across segments and geographies.",
"Forward-looking statements are included, emphasizing potential risks such as economic fluctuations, competition, and regulatory changes. Financial metrics and graphs illustrate the company's performance over the last few quarters."
],
"keywords": [
"financial results",
"net sales",
"operating income",
"net income",
"free cash flow",
"AWS",
"North America",
"International",
"valuation loss",
"segment results",
"economic conditions",
"cloud services"
],
"processed": "2025-09-09T22:13:45",
"created": "2025-09-03T18:50:45",
"modified": "2025-09-18T16:33:00"
}
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/company-docs-v1/{doc_id}' \
--header 'X-API-Key: xxx'
Python
import requests
requests.request("GET", "https://premium.aiera.com/api/company-docs-v1/{doc_id}", headers={"X-API-Key": "xxx"})