Skip to main content
GET
/
v1
/
financials
/
reported
Get Reported Financials
curl --request GET \
  --url https://api.aries.com/v1/financials/reported \
  --header 'Authorization: Bearer <token>'
{ "data": { "cik": "320193", "data": [ { "acceptedDate": "2025-05-02 06:00:46", "accessNumber": "0000320193-25-000057", "cik": "320193", "endDate": "2025-03-29 00:00:00", "filedDate": "2025-05-02 00:00:00", "form": "10-Q", "quarter": 2, "report": { "bs": [ { "concept": "us-gaap_ComprehensiveIncomeNetOfTax", "label": "Total comprehensive income", "unit": "usd", "value": 61919000000 } ] }, "startDate": "2024-09-29 00:00:00", "symbol": "AAPL", "year": 2025 } ], "symbol": "AAPL" } }

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string

Stock symbol, such as AAPL. Use it to narrow results to one company. Required when both cik and accessNumber are omitted.

cik
string

SEC CIK. Optional when symbol or accessNumber is provided.

accessNumber
string

SEC access number. Optional when symbol or cik is provided.

freq
string

Optional reporting frequency filter. Use it to limit results to annual or quarterly reports.

from
string<date>

Optional start date in YYYY-MM-DD format. Use it to begin the research window.

to
string<date>

Optional end date in YYYY-MM-DD format. Use it to end the research window.

Response

Reported financials.

Financials reported response