Skip to content

Get Charge Sources

GET
/api/v1/charge/sources
curl --request GET \
--url https://api.parasta.io/api/v1/charge/sources \
--header 'Authorization: Bearer <token>'

List available funding sources (connected banks, exchanges, wallets).

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"sources": [
{
"type": "bank",
"name": "KB Kookmin",
"balance": "15,000,000 KRW"
},
{
"type": "crypto",
"name": "MetaMask",
"tokens": [
"ETH",
"USDT"
]
}
]
}
}