---
title: "Get funds deposited day-over-day"
method: GET
path: "/v1/leaderboard/funds/timeseries"
tags: ["leaderboard"]
---

# Get funds deposited day-over-day

`GET /v1/leaderboard/funds/timeseries`

Get daily aggregated funds for time-series charts (public, no auth).

- Returns daily totals of funds deposited into Grove accounts.
- Useful for charts showing deposit trends over time.
- Data points are ordered by date ascending (oldest first).
- `window` examples:
    - `24h`: funds deposited in the last 24 hours (1 day)
    - `7d`: funds deposited in the last 7 days
    - `30d`: funds deposited in the last 30 days
    - `all`: all-time data

## Query parameters

- `token` string — Token symbol to filter by.
- `window` '24h' | '7d' | '30d' | 'all' — Time window: '24h', '7d', '30d', or 'all' (all time).

## Response `200`

Successful Response

- FundsTimeseriesResponse — Response model for funds timeseries (day-over-day deposits).
  - `token` string, required
  - `window` string, required
  - `data` FundsTimeseriesEntry[], required
    - `date` string, required
    - `total_amount_usd` string, required
    - `total_amount_raw` string, required
    - `fund_count` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/grove/apis/grove-api.md) · [All operations](https://skmtc.net/grove/apis/grove-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/grove/grove-api/revisions/f286b48a8105/schema)
