Skip to main content
GET
/
v1
/
card-issuer
/
deposits
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/deposits?chain=SOL&status=funded' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "deposits": [
      {
        "id": "6627f3a2c5d4e100123abcde",
        "chain": "SOL",
        "amount": 500.00,
        "token": "USDC",
        "status": "funded",
        "tx_hash": "5KtP3Mz...",
        "created_at": "2026-04-25T10:00:00.000Z",
        "funded_at": "2026-04-25T10:06:12.000Z"
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 20
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
page
integer
Page number. Defaults to 1.
limit
integer
Results per page. Defaults to 20, max 100.
status
string
Filter by deposit status. One of: pending, auto_funding, awaiting_manual, funding, funded, failed.
chain
string
Filter by source chain. One of: SOL, XDC.
curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/deposits?chain=SOL&status=funded' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "deposits": [
      {
        "id": "6627f3a2c5d4e100123abcde",
        "chain": "SOL",
        "amount": 500.00,
        "token": "USDC",
        "status": "funded",
        "tx_hash": "5KtP3Mz...",
        "created_at": "2026-04-25T10:00:00.000Z",
        "funded_at": "2026-04-25T10:06:12.000Z"
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 20
  }
}