Skip to main content
POST
/
api
/
investing
/
quotes
/
search
/investing/quotes/search
curl --request POST \
  --url https://api.anysite.io/api/investing/quotes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@investing_search_result",
    "quotes": [],
    "news": [],
    "authors": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search keyword: company name, ticker symbol, or topic

Minimum string length: 1
count
integer
required

Max number of results per category

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@investing_search_result
quotes
InvestingSearchQuote · object[]
news
InvestingSearchNews · object[]
authors
InvestingSearchAuthor · object[]