subscribers), separate from the app user list. Admin role required.page_number (default 1), search (matches email).200 - data.subscribers[] (each: email, created_at, current_city, current_state, current_lat, current_lng, device_details) plus data.total, data.offset, data.limit. current_* are null for email-only subscribers with no profile.401 - missing/invalid token | 403 - not an adminAuthorization: Bearer ********************curl --location 'https://uat-api.hastaai.in/api/v1/users/panel/subscribers?page_number=undefined&search=undefined' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Subscribers fetched successfully",
"data": {
"subscribers": [
{
"email": "saikat@example.com",
"current_city": "Kolkata",
"current_state": "West Bengal",
"current_lat": 22.5726,
"current_lng": 88.3639,
"device_details": "Win32 | Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/149.0.0.0 Safari/537.36 | en-US",
"created_at": "2026-06-29T18:37:47Z"
}
],
"total": 1,
"offset": 0,
"limit": 20
}
}