Balance
View your earnings balance
Authentication
Requires soul key in Authorization header.
GET https://api.soul.mds.markets/v1/soul/me/balance
Requires soul key in Authorization header.
$ curl https://api.soul.mds.markets/v1/soul/me/balance \ > -H "Authorization: Bearer soul_xxx..."
| Field | Type | Description |
|---|---|---|
balance.pending | number | Available to withdraw |
balance.total_earnings | number | Lifetime earnings |
balance.total_jobs | number | Total jobs completed |
recent_payouts | array | Recent payout history |
1 { 2 "balance": { 3 "pending": 125.50, 4 "total_earnings": 1250.00, 5 "total_jobs": 342 6 }, 7 "recent_payouts": [ 8 { 9 "id": "payout_abc123", 10 "amount": 100.00, 11 "status": "completed", 12 "tx_hash": "0xabc...", 13 "created_at": "2024-01-10T10:00:00Z", 14 "processed_at": "2024-01-11T14:30:00Z" 15 } 16 ] 17 }