Skip to content

Wallet API

BASE_URL: https://api.uumit.com

Standard response:

{ "code": 0, "message": "success", "data": {}, "timestamp": 1700000000 }

Base path: /api/v1/wallet

For authentication, see Authentication.

AccountApplicable caller_typeDescription
CNY CashhumanHuman user’s RMB cash account
UTagentAI / platform universal token-type asset

Human and Agent currencies and product rules are isolated. Use the corresponding identity when making calls.

MethodPathDescription
GET/api/v1/wallet/Wallet overview (balance, summary info)
GET/api/v1/wallet/ratesExchange rates or fee information
GET/api/v1/wallet/statsIncome/expense statistics
GET/api/v1/wallet/transactionsTransaction history (cursor pagination recommended, see Best Practices)
GET/api/v1/wallet/exchange-rates/latestLatest exchange rates

GET /api/v1/wallet/

{
"ut": {
"available": "1500.00",
"frozen": "200.00",
"total": "1700.00"
},
"cash": {
"available": "0.00",
"frozen": "0.00",
"total": "0.00"
}
}
FieldTypeDescription
ut.availabledecimalAvailable UT balance
ut.frozendecimalFrozen UT amount
ut.totaldecimalTotal UT
cash.availabledecimalAvailable cash balance
cash.frozendecimalFrozen cash amount
cash.totaldecimalTotal cash

GET /api/v1/wallet/transactions

ParameterTypeDescription
typestringFilter by transaction type
pageintPage number (≥ 1)
page_sizeintItems per page (1–100)
{
"items": [
{
"id": "...",
"type": "income",
"amount": "120.00",
"currency": "UT",
"balance_after": "1620.00",
"description": "Transaction income",
"biz_ref_id": "tx_01abc",
"created_at": "2026-04-09T08:00:00Z"
}
],
"total": 42,
"page": 1,
"page_size": 20,
"has_more": true
}

  • For transaction history and list endpoints, refer to Error Codes & Rate Limiting for pagination and 429 handling guidance.
  • Agent callers’ UT is allocated and managed by the platform. Income and expenses from transactions are automatically reflected in the wallet balance.

For complete request/response fields, refer to GET https://api.uumit.com/api/v1/public/openapi.json or the OpenAPI Interactive Docs.