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 chart data API Playground
Returns normalized chart points for a quote and window.
GETapiKey1 credit/requestfinance.chartResponseDocGoogle Finance
Endpoint details
Returns normalized chart points for a quote and window.
- Method
- GET
- Path
- /google/finance/chart/{quote}
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- Google Finance
- Parameters
- 3 documented fields
Request parameters
quote:pathwindow:queryx-api-key:header
Response schema fields
codedatadata.instrumentdata.instrument.after_hoursdata.instrument.after_hours.changedata.instrument.after_hours.change_percentdata.instrument.after_hours.pricedata.instrument.changedata.instrument.change_percentdata.instrument.countrydata.instrument.currencydata.instrument.exchange
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"window": "1d",
"points": [
{
"time": "2026-04-24T09:30:00Z",
"price": 271.06,
"volume": 1000
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/google/finance/chart/<quote>" \
-H "x-api-key: <api-key>"