Skip to main content

Get wallet details

GET/api/v1/wallets/{walletBizId}HMAC

Retrieves detailed information about a specific wallet.

Headers

NameTypeRequiredDescription
X-Api-KeystringrequiredAPI key identifier
X-SignaturestringrequiredHMAC-SHA256 signature
X-TimestampstringrequiredUnix timestamp in seconds
X-NoncestringrequiredUnique request identifier (UUID)

Path Parameters

NameTypeRequiredDescription
walletBizIdstringrequiredWallet business ID

Request Example

curl -X GET https://api.lampay.app/api/v1/wallets/<walletBizId> \
-H "X-Api-Key: sk_live_xxx" \
-H "X-Signature: <computed_signature>" \
-H "X-Timestamp: 1709337600" \
-H "X-Nonce: 550e8400-e29b-41d4-a716-446655440000"

Response

200Success
{
"version": "1.3.0",
"success": true,
"code": "2000",
"message": "SUCCESS",
"data": {
"bizId": "wlt_abc123",
"name": "Main USD Wallet",
"type": "INTERNAL",
"status": "ACTIVE",
"currency": "USD",
"balance": 1500.25
}
}