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

# Get Funding History

> GET /api/v1/cards/{card_id}/funding/history - Retrieve card funding events

Retrieve historical funding activity for a card.

## Endpoint

```text theme={null}
GET /api/v1/cards/{card_id}/funding/history
```

## Path Parameters

<ParamField path="card_id" type="string" required>
  The card identifier returned during card creation or listing.
</ParamField>

## Example Request

```bash theme={null}
curl https://api.usezentra.com/api/v1/cards/card_123/funding/history \
  -H "Authorization: Bearer YOUR_SECRET_KEY"
```

## Response Notes

* Use this endpoint to review historical funding events, references, and reconciliation data for one card.
* For the current balance only, use `GET /api/v1/cards/{card_id}/balance`.

## Next Steps

<CardGroup cols={2}>
  <Card title="Card Balance" icon="wallet" href="/api-reference/cards/balance">
    Check the current available balance
  </Card>

  <Card title="Fund Card" icon="plus" href="/api-reference/cards/fund">
    Create another funding event
  </Card>
</CardGroup>
