Skip to main content
POST
/
api
/
google
/
finance
/
quotes
/
news
/google/finance/quotes/news
curl --request POST \
  --url https://api.anysite.io/api/google/finance/quotes/news \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ticker": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "title": "<string>",
    "url": "<string>",
    "@type": "@google_finance_news_item",
    "source": "<string>",
    "published_at": 123,
    "image": "<string>",
    "tickers": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ticker
string
required

Ticker in SYMBOL:EXCHANGE form

Pattern: ^[A-Za-z0-9.\-]{1,15}:[A-Za-z0-9.\-]{1,15}$
Examples:

"GOOGL:NASDAQ"

"AAPL:NASDAQ"

"TSLA:NASDAQ"

count
integer
required

Maximum number of news 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

title
string
required
url
string
required
@type
string
default:@google_finance_news_item
source
string | null
published_at
integer | null
image
string | null
tickers
string[]