# Get Intraday Graph Data

Get intraday minute-by-minute price and volume data for a stock from Google Finance. Returns data points with price, volume, and formatted timestamps. Use the [Google Finance quote API](/docs/google-finance-api/google_finance_quote) alongside intraday charts when you also need quote summary fields, key statistics, company information, financials, and news.

- **Documentation:** [https://scrappa.co/docs/google-finance-api/google_finance_intraday](https://scrappa.co/docs/google-finance-api/google_finance_intraday)
- **API group:** Google Finance API
- **Endpoint:** `GET https://scrappa.co/api/google-finance/intraday`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `symbol` | string | Yes | Stock symbol (e.g., AAPL) |
| `exchange` | string | No | Exchange code (e.g., NASDAQ) |
| `hl` | string | No | Language code (default: en) |
| `gl` | string | No | Country code (default: us) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/google-finance/intraday?symbol=AAPL&exchange=NASDAQ"
```

## Example response

```json
{
    "symbol": "AAPL",
    "exchange": "NASDAQ",
    "currency": "USD",
    "graph": [
        {
            "price": 275.41,
            "currency": "USD",
            "date": "Feb 12 2026, 09:30 AM UTC-05:00",
            "volume": 616590
        },
        {
            "price": 274.3,
            "currency": "USD",
            "date": "Feb 12 2026, 09:31 AM UTC-05:00",
            "volume": 265661
        }
    ]
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
|  | Symbol not found |  |
|  | Rate limited |  |
|  | Google Finance request failed |  |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
