Wallet
Get my wallet
GET
/api/v1/wallet/meReturns the seller's wallet balances — available (withdrawable) and pending (from orders not yet completed).
Requires Authorization
SELLER only
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/wallet/me \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"sellerProfileId": "sp_2b3c4d",
"balances": [
{
"currency": "USD",
"available": "184.50",
"pending": "12.00"
}
]
}
}