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

# List Funding Deposits

> List all inbound deposits to your issuer program — SOL auto-funding and XDC manual deposits

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField query="page" type="integer">Page number. Defaults to `1`.</ParamField>

<ParamField query="limit" type="integer">Results per page. Defaults to `20`, max `100`.</ParamField>

<ParamField query="status" type="string">
  Filter by deposit status. One of: `pending`, `auto_funding`, `awaiting_manual`, `funding`, `funded`, `failed`.
</ParamField>

<ParamField query="chain" type="string">
  Filter by source chain. One of: `SOL`, `XDC`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/deposits?chain=SOL&status=funded' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "success": true,
    "data": {
      "deposits": [
        {
          "id": "6627f3a2c5d4e100123abcde",
          "tx_hash": "5KtP3MzXYZABCDE1234567890abcdef12345678901234567890abcdef1234567",
          "chain": "SOL",
          "amount": 500.00,
          "token": "USDC",
          "funding_status": "funded",
          "funding_type": "auto",
          "net_amount": 499.00,
          "fees": 1.00,
          "detected_at": "2026-04-25T10:00:00.000Z",
          "funded_at": "2026-04-25T10:06:12.000Z",
          "can_fund": false
        }
      ],
      "total": 1,
      "page": 1,
      "limit": 20
    }
  }
  ```
</ResponseExample>
