Skip to main content
GET
/
v1
/
crypto-gateway
/
overview
curl -X GET '/crypto-gateway/overview' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "total_payments": 150,
    "total_volume_usd": 25000.00,
    "paid_count": 120,
    "pending_count": 10,
    "expired_count": 20,
    "conversion_rate": "80%"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
curl -X GET '/crypto-gateway/overview' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "success": true,
  "data": {
    "total_payments": 150,
    "total_volume_usd": 25000.00,
    "paid_count": 120,
    "pending_count": 10,
    "expired_count": 20,
    "conversion_rate": "80%"
  }
}