SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Dashboard

Get admin overview

GET/api/v1/dashboard/overview

Platform-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"
      }
    ]
  }
}