Skip to main content
POST
/
api
/
nasdaq
/
news
/nasdaq/news
curl --request POST \
  --url https://api.anysite.io/api/nasdaq/news \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "@type": "@nasdaq_article",
    "description": "<string>",
    "publisher": "<string>",
    "publisher_image": "<string>",
    "created_date": "<string>",
    "ago": "<string>",
    "topic": "<string>",
    "topic_url": "<string>",
    "primary_symbol": "<string>",
    "related_symbols": [],
    "url": "<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"

"TSLA"

count
integer
required

Maximum number of articles to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
title
string
required
@type
string
default:@nasdaq_article
description
string | null
publisher
string | null
publisher_image
string | null
created_date
string | null
ago
string | null
topic
string | null
topic_url
string | null
primary_symbol
string | null
url
string | null