Skip to main content
GET
/
wallet
cURL
curl --request GET \
  --url https://api.mercuriumpagamentos.com/wallet \
  --header 'Authorization: Bearer <token>'
{
  "id": "d5e3c79c-27f2-4a41-8f7f-6e3bbec17f9b",
  "sellerId": "3312a7f8-fa0d-42f0-a7c8-b785204f2ccb",
  "balance": 0,
  "pendingBalance": 0,
  "createdAt": "2025-06-30T00:00:00.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

id
string<uuid>
required
Example:

"d5e3c79c-27f2-4a41-8f7f-6e3bbec17f9b"

sellerId
string<uuid>
required
Example:

"3312a7f8-fa0d-42f0-a7c8-b785204f2ccb"

balance
number
required
Example:

0

pendingBalance
number
required
Example:

0

createdAt
string<date-time>
required
Example:

"2025-06-30T00:00:00.000Z"