Get Prefund balance
Partner Auth: EIP-191 signature by the partner's registered backend key, with X-Api-Deadline and optional X-Api-PublicKey headers. See the Signature and verify guide.
Partner's EIP-191 signature for Partner Auth (0x-prefixed hex).
Unix seconds expiry for the request signature.
Partner's signer Ethereum address.
Current Prefund Account state for the partner's settlement currency. The response does not include a settleMode field; record your configured settlement mode from onboarding.
Standard response envelope for the Prefund balance endpoint. code 0 means success.
0 on success; a non-zero value indicates a business rejection.
Human-readable diagnostic; empty on success.
GET /api/fma/v1/prefund-balance HTTP/1.1
Host: openapi.ur.app
X-Api-Signature: text
X-Api-Deadline: text
X-Api-PublicKey: text
Accept: */*
Current Prefund Account state for the partner's settlement currency. The response does not include a settleMode field; record your configured settlement mode from onboarding.
{
"code": 0,
"message": "",
"data": {
"partnerId": "partner_id",
"account": "0xPrefundAccAddress",
"currency": "USD",
"balance": "125000.00",
"minBalance": "50000.00",
"level": "normal",
"allowance": "125000.00",
"updatedAt": 1713700000
}
}Last updated