Skip to main content
POST
/
api
/
nasdaq
/
quotes
/
earnings
/nasdaq/quotes/earnings
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/quotes/earnings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "period": "<string>",
    "@type": "@nasdaq_earning",
    "type": "<string>",
    "consensus_eps": 123,
    "actual_eps": 123,
    "is_upcoming": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker symbol

Minimum string length: 1
Examples:

"AAPL"

"MSFT"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

period
string
required
@type
string
default:@nasdaq_earning
type
string | null
consensus_eps
number | null
actual_eps
number | null
is_upcoming
boolean
default:false