Skip to main content
POST
/
api
/
finviz
/
news
/finviz/news
curl --request POST \
  --url https://api.anysite.io/api/finviz/news \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "category": "market"
}
'
[
  {
    "title": "<string>",
    "url": "<string>",
    "@type": "@finviz_news_item",
    "source": "<string>",
    "time": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of news items to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
enum<string>
default:market

News category

Available options:
market,
stocks,
etf,
crypto

Response

Successful Response

title
string
required
url
string
required
@type
string
default:@finviz_news_item
source
string | null
time
string | null