> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apifycloud.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Daily Metrics

> Get daily aggregated metrics for an app

## Endpoint

`GET https://api.apifycloud.io/api/v1/analytics/{appId}/metrics/daily`

## Authentication

Bearer token required.

Scope: `analytics:read`

## Query parameters

* `startDate` (string, optional, ISO datetime)
* `endDate` (string, optional, ISO datetime)
* `timezone` (string, optional, default `UTC`)

## Response

```json theme={null}
{
  "data": [
    {
      "date": "2026-02-18",
      "sent": 100,
      "delivered": 90,
      "read": 70,
      "failed": 10,
      "cost": 0
    }
  ],
  "meta": {
    "timestamp": "2026-02-18T00:00:00.000Z"
  }
}
```

## Errors

* `403 forbidden` unauthorized for app or missing scope
* `400 validation_error` invalid query parameters
* `429 rate_limit_exceeded`
* `500 server_error`
