cURL
curl --request GET \ --url https://api.stablepay.global/v2/users \ --header 'Authorization: Bearer <token>'
List all users with pagination
pending
in_progress
verified
curl "https://api.stablepay.global/v2/users?page=1&limit=20" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": { "users": [ { "id": "usr_abc123", "name": "Rahul Kumar", "mobile": "+919876543210", "email": "[email protected]", "kycLevel": "basic", "kycStatus": "verified", "status": "active", "depositAddress": "0x742d35Cc...", "createdAt": "2025-01-05T10:00:00Z" } ], "total": 150 }, "pagination": { "page": 1, "limit": 20, "total": 150, "totalPages": 8 } }