Docs/Google Finance
Docs / API reference
POST/v1/data/google/finance
Google Finance
Get financial market data from Google Finance. Omit query for a market overview (US, Europe, Asia, Crypto, Currencies, Futures + trends). Provide a ticker symbol (e.g. 'AAPL:NASDAQ') for a single stock quote with similar stocks and news.
Execution model
Live request
Runtime depends on endpoint, target, pagination, rendering mode, and active plan limits.
Credit weight
Live catalog
Current weights are managed from the Data API Weights admin table and shown on pricing before use.
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
| query | string | Optional | Stock ticker (e.g. 'AAPL:NASDAQ', 'BTC-USD'). Omit for market overview. Max 100 characters. |
| language | string | Optional | Language code (hl parameter). |
| country | string | Optional | Country code for geo-targeting (gl parameter). |
Request and response
curl -X POST "https://api.datablue.dev/v1/data/google/finance" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "AAPL:NASDAQ"
}'Example response
{
"success": true,
"time_taken": 1.87,
"stock": "AAPL:NASDAQ",
"name": "Apple Inc",
"price": "$198.50",
"price_movement": {
"percentage": "+1.24%",
"value": "+$2.43",
"movement": "up"
},
"currency": "USD",
"previous_close": "$196.07",
"after_hours_price": "$198.75",
"after_hours_movement": {
"percentage": "+0.13%",
"value": "+$0.25",
"movement": "up"
},
"similar_stocks": [
{
"stock": "MSFT:NASDAQ",
"link": "https://www.google.com/finance/quote/MSFT:NASDAQ",
"name": "Microsoft Corporation",
"price": "$428.50",
"price_movement": {
"percentage": "+0.87%",
"value": "+$3.70",
"movement": "up"
}
},
{
"stock": "GOOGL:NASDAQ",
"link": "https://www.google.com/finance/quote/GOOGL:NASDAQ",
"name": "Alphabet Inc",
"price": "$178.20",
"price_movement": {
"percentage": "-0.34%",
"value": "-$0.61",
"movement": "down"
}
}
],
"news": [
{
"title": "Apple Reports Record Q2 Revenue Driven by Services Growth",
"url": "https://www.cnbc.com/2026/04/02/apple-q2-earnings.html",
"source": "CNBC",
"snippet": "Apple beat Wall Street expectations with $97.4B in revenue...",
"published_timestamp": 1743638400
}
]
}