---
title: "Get account funding history"
method: GET
path: "/v1/account/fund_history"
tags: ["account"]
---

# Get account funding history

`GET /v1/account/fund_history`

Retrieve the funding history for the authenticated account.

Returns a paginated list of all funding events (x402 payments) for this account,
ordered by most recent first.

Authentication: `Authorization: Bearer <CLIENT_JWT>`

Query parameters:
- `limit`: Maximum number of events to return (default: 50, max: 100)
- `offset`: Number of events to skip for pagination (default: 0)

## Query parameters

- `limit` integer — Maximum number of events to return
- `offset` integer — Number of events to skip for pagination

## Headers

- `authorization` string, nullable — Bearer JWT issued by Grove that identifies the account.

## Response `200`

Successful Response

- FundHistoryResponse — Response model for account funding history.
  - `account_id` string, required
  - `total_count` integer, required
  - `entries` FundHistoryEntry[], required
    - `id` string, required
    - `tx_hash` string, nullable
    - `amount_usd` string, required
    - `amount_raw` string, required
    - `token_symbol` string, required
    - `network` string, required
    - `status` string, required
    - `created_at` string, required
    - `confirmed_at` string, nullable

## 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/versions/f286b48a8105/schema)
