Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Google Finance Search API Playground
Fetches normalized search results for a provided keyword from Google Finance.
GETapiKey1 credit/requestfinance.searchResponseDocGoogle Finance
Endpoint details
Fetches normalized search results for a provided keyword from Google Finance.
- Method
- GET
- Path
- /google/finance/search
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- Google Finance
- Parameters
- 2 documented fields
Request parameters
q:queryx-api-key:header
Response schema fields
codedatadata[].changedata[].company_namedata[].currencydata[].exchangedata[].percentagedata[].pricedata[].tickermsg
Sample response summary
{
"code": 200,
"data": [
{
"change": -3.369995,
"company_name": "Apple Inc",
"currency": "USD",
"exchange": "NASDAQ",
"percentage": -1.301056,
"price": 255.65,
"ticker": "AAPL"
}
],
"msg": "OK"
}cURL example
curl "https://api.crawlora.net/api/v1/google/finance/search?q=<q>" \
-H "x-api-key: <api-key>"