Endpoint Playground
Test Crawlora's Google Finance Quote API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/google/finance/quote/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| quote (path) | string | Yes | Stock symbol to fetch the latest quote for (e.g., AAPL:NASDAQ, BTC-USD) |
{
"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"
}Public Playground
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.
Fetches the latest quote data for a provided stock symbol from Google Finance https://www.google.com/finance/quote/AAPL:NASDAQ?hl=en.
{
"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 "https://api.crawlora.net/api/v1/google/finance/quote/<quote>" \
-H "x-api-key: $CRAWLORA_API_KEY"