Documentation
Fetch Balance
Use this endpoint to check your current wallet balance.
Endpoint
GET /client/fetchbalanceRequest Headers
Authorization: Bearer <YOUR_API_KEY>Response
{
"status": "success",
"data": {
"balance": 50000.00,
"currency": "INR",
"last_updated": "2025-01-13T10:30:00Z"
}
}Example cURL
curl -X GET "https://api.ztake.in/client/fetchbalance" \
-H "Authorization: Bearer <YOUR_API_KEY>"