Skip to main content
POST
/
api
/
nasdaq
/
quotes
/
dividends
/nasdaq/quotes/dividends
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/quotes/dividends \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300,
  "asset_class": "stocks"
}
'
[
  {
    "@type": "@nasdaq_dividend",
    "ex_date": "<string>",
    "type": "<string>",
    "amount": 123,
    "declaration_date": "<string>",
    "record_date": "<string>",
    "payment_date": "<string>",
    "currency": "<string>"
  }
]

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
asset_class
enum<string>
default:stocks

Asset class of the symbol

Available options:
stocks,
etf,
index

Response

Successful Response

@type
string
default:@nasdaq_dividend
ex_date
string | null
type
string | null
amount
number | null
declaration_date
string | null
record_date
string | null
payment_date
string | null
currency
string | null