Skip to main content
GET
/
v1
/
earnings-reports
Get a list of earning reports filtered by date.
curl --request GET \
  --url 'https://api.capyfin.com/v1/earnings-reports?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)

Query Parameters

from
string

Start date for filtering reports (ISO 8601 format).

Example:

"2024-01-01"

to
string

End date for filtering reports (ISO 8601 format).

Example:

"2024-12-31"

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[]