Balance

View your earnings balance
GET https://api.soul.mds.markets/v1/soul/me/balance

Authentication

Requires soul key in Authorization header.

Example Request

$curl https://api.soul.mds.markets/v1/soul/me/balance \
> -H "Authorization: Bearer soul_xxx..."

Response

FieldTypeDescription
balance.pendingnumberAvailable to withdraw
balance.total_earningsnumberLifetime earnings
balance.total_jobsnumberTotal jobs completed
recent_payoutsarrayRecent 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}