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 Quote API Playground
Fetches the latest quote data for a provided stock symbol from Google Finance https://www.google.com/finance/quote/AAPL:NASDAQ?hl=en.
GETapiKey1 credit/requestfinance.quoteResponseDocGoogle Finance
Endpoint details
Fetches the latest quote data for a provided stock symbol from Google Finance https://www.google.com/finance/quote/AAPL:NASDAQ?hl=en.
- Method
- GET
- Path
- /google/finance/quote/{quote}
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- Google Finance
- Parameters
- 2 documented fields
Request parameters
quote:pathx-api-key:header
Response schema fields
codedatadata.aboutdata.investmentdata.key_statsdata.newsdata.news[].sourcedata.news[].timedata.news[].titledata.news[].urldata.tickersdata.tickers[].price
Sample response summary
{
"code": 200,
"data": {
"about": "sample",
"investment": "sample",
"key_stats": "sample",
"news": [
{
"source": "Reuters",
"time": "2024-12-27T09:03:00Z",
"title": "SAP Announces Q3 Earnings",
"url": "https://www.reuters.com/article/sap-q3"
}
],
"tickers": [
{
"price": 239.5,
"time": "2024-12-27T09:03:00Z",
"volume": 131032
}
],
"title": "SAP SE"
},
"msg": "OK"
}cURL example
curl "https://api.crawlora.net/api/v1/google/finance/quote/<quote>" \
-H "x-api-key: <api-key>"