Skip to main content
GET
/
v1
/
wallet
/
balances
cURL
curl --request GET \
  --url https://{base_url}/v1/wallet/balances \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "beneficiary_id": "f653e109-6c62-4aa4-869c-418c874e0a6c",
    "source_amount": 500,
    "source_currency": "USD",
    "deduct_from": "PREFUNDED_BALANCE",
    "remarks": "auto settle false"
  },
  {
    "beneficiary_id": "f653e109-6c62-4aa4-869c-418c874e0a6c",
    "source_amount": 500,
    "source_currency": "USDC",
    "deduct_from": "LIQUIDATION_ADDRESS",
    "remarks": "auto settle false"
  }
]
'
{
  "data": {
    "currency": "<string>",
    "amount": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.fin.com/llms.txt

Use this file to discover all available pages before exploring further.

To enable prefundable wallets, you must first reach out to the fin.com team to enable wallets for you for both sandbox and production

Body

application/json
beneficiary_id
string
required
source_amount
string
required
source_currency
enum<string>
required
Available options:
USD,
USDC
deduct_from
enum<string>
required
Available options:
LIQUIDATION_ADDRESS,
PREFUNDED_BALANCE
remarks
string

Response

200 - application/json
data
object