Skip to main content
POST
/
v1
/
profile
Profile
curl --request POST \
  --url https://api.example.com/v1/profile

Profile

Get your reseller account profile including tier, balance, and API usage statistics.

Request

POST /v1/profile
{
  "api_key": "your-api-key",
  "sign": "MD5(api_key + api_secret + profile)"
}

Signature

sign = MD5(api_key + api_secret + "profile")

Response

200
{
  "success": true,
  "data": {
    "id": "res-abc123",
    "name": "Toko Game Store",
    "email": "tokogame@example.com",
    "phone": "08123456789",
    "tier": "gold",
    "balance": 1500000,
    "total_orders": 5420,
    "total_success": 5380,
    "success_rate": 99.26,
    "joined_at": "2025-06-15T00:00:00Z",
    "api_usage": {
      "today": 245,
      "this_month": 8500,
      "limit_per_minute": 300,
      "limit_per_day": 100000
    },
    "webhook_url": "https://yourstore.com/api/webhook",
    "ip_whitelist": ["103.100.200.10"]
  },
  "message": "OK"
}

Tier Levels

TierMin Monthly VolumeDiscountAPI Rate Limit
Basic0Base price60 req/min
Silver500 orders2% off120 req/min
Gold2000 orders5% off300 req/min