Skip to main content
POST
/
api
/
yahoo
/
finance
/
search
/yahoo/finance/search
curl --request POST \
  --url https://api.anysite.io/api/yahoo/finance/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "exchange": "<string>",
    "type": "<string>",
    "@type": "@yahoo_finance_symbol",
    "exchange_name": "<string>",
    "sector": "<string>",
    "industry": "<string>",
    "score": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query for ticker symbols or company names

Minimum string length: 1
count
integer
required

Maximum number of results

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
name
string
required
exchange
string
required
type
string
required
@type
string
default:@yahoo_finance_symbol
exchange_name
string | null
sector
string | null
industry
string | null
score
number | null