cURL
curl --request GET \ --url https://api.example.com/seller-wallet/gestao \ --header 'Authorization: <authorization>'
{ "status": true, "data.balancePix": 123, "data.balanceBoleto": 123, "data.balanceCard": 123, "data.balanceTotal": 123, "data.balanceBlocked": 123 }
Consultar detalhes da carteira financeira do seller
Bearer sk_live_...
Bearer sk_test_...
true
curl -X GET https://api.linka.com/seller-wallet/gestao \ -H "Authorization: Bearer <token>"
{ "status": true, "data": { "balancePix": 180000, "balanceBoleto": 40000, "balanceCard": 30000, "balanceTotal": 250000, "balanceBlocked": 50000, "currency": "BRL", "updatedAt": "2026-03-06T10:00:00.000Z" } }
Was this page helpful?