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

# Get Statistics

<Warning>
  This is an unreleased new feature. It will be released in the V2 update and is not available at the moment.
</Warning>

Returns ad send counts and join statistics for your account.

### Endpoint

```text theme={null}
GET https://adblox.xyz/api/v1/stats
```

### Example Request

```bash theme={null}
curl -X GET "https://adblox.xyz/api/v1/stats" \
  -H "Authorization: Bearer YOUR_API_KEY_HERE" \
  -H "Content-Type: application/json"
```

### Response

Returns aggregated statistics for:

* Daily
* Weekly
* Monthly
* All-Time

```json theme={null}
{
  "data": {
    "sends": {
      "today": 142,
      "weekly": 890,
      "monthly": 3400,
      "all_time": 12500,
      "failed_all_time": 12,
      "daily_breakdown": [
        {
          "date": "2026-05-10",
          "sends": 120
        },
        {
          "date": "2026-05-11",
          "sends": 145
        }
      ]
    },
    "joins": {
      "today": 12,
      "weekly": 85,
      "monthly": 310,
      "all_time": 1050
    },
    "meta": {
      "generated_at": "2026-05-15T14:30:00.000000+00:00",
      "user": "YourUsername"
    }
  }
}
```
