> ## 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.

# Get Funding Address

> Get the deposit address to fund the card wallet with cryptocurrency

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

<ParamField path="yativoCardId" type="string" required>
  The Yativo Card account ID.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/wallet/funding-address' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "address": "DwPq8k2XbNmJhvRs5TcLu4Ye9AgFp3ZoVi7Bn1KqWMeS",
      "network": "solana",
      "funding_method": "auto_bridge",
      "card_currency": "USDCe",
      "supported_tokens": [
        {
          "symbol": "USDC",
          "name": "USD Coin",
          "contract": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
          "decimals": 6,
          "network": "solana"
        }
      ],
      "funding_sources": {
        "usdc_sol": {
          "address": "DwPq8k2XbNmJhvRs5TcLu4Ye9AgFp3ZoVi7Bn1KqWMeS",
          "network": "solana",
          "token": "USDC_SOL",
          "bridge_type": "automatic",
          "bridge_time": "2-5 minutes",
          "description": "Send USDC on Solana — automatically bridged to your card"
        }
      },
      "minimum_deposit": "5.00",
      "instructions": "Send USDC (SPL) on Solana to this address. Auto-bridge starts once balance reaches 5.00 USDC."
    }
  }
  ```
</ResponseExample>
