Skip to main content
GET
/
v1
/
earnings-reports
/
{exchange}
/
{symbol}
Get a list of earning reports.
curl --request GET \
  --url 'https://api.capyfin.com/v1/earnings-reports/{exchange}/{symbol}?apikey='
{
  "total": 100,
  "sub": true,
  "items": [
    {
      "id": "507f1f77bcf86cd799439011",
      "fiscalPeriod": "Q12024",
      "date": "2024-05-02T00:00:00.000Z",
      "reportTime": "amc",
      "currency": "USD",
      "totalRevenue": 94836000000,
      "eps": 1.53,
      "epsAdj": 1.53,
      "verified": true,
      "employees": 1000
    }
  ]
}

Authorizations

apikey
string
query
required

Pass your API key as a query parameter (e.g., /endpoint?apikey=YOUR_API_KEY)

Path Parameters

exchange
string
required

The exchange of the instrument (e.g., nasdaq, nyse).

symbol
string
required

The symbol of the instrument (e.g., aapl, tsla).

Query Parameters

page
number

Page number for pagination (default: 1).

Example:

1

Response

200 - application/json
total
number
required

The total number of results

Example:

100

sub
boolean

Whether this response includes subscriber-only data

Example:

true

items
object[]