Dashboard
Get admin overview
GET
/api/v1/dashboard/overviewPlatform-wide snapshot — users, sellers, orders, and GMV at a glance. Admin-only.
Requires Authorization
ADMIN only
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/dashboard/overview \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"totalUsers": 4820,
"totalSellers": 210,
"totalOrders": 12400,
"gmv": [
{
"currency": "USD",
"amount": "184200.00"
}
]
}
}