Skip to main content
GET
https://services-staging.bitmama.io/api
/
v1
/
partner
/
profile
Get Profile
curl --request GET \
  --url https://services-staging.bitmama.io/api/v1/partner/profile \
  --header 'Authorization: <authorization>'
{
  "status": "success",
  "message": "Partner profile retrieved",
  "data": {
    "serviceId": "acme-partner-abc123",
    "slug": "acme",
    "businessName": "Acme Corp",
    "email": "api@acme.com",
    "status": "active",
    "fees": {
      "userKyc": 1.5,
      "cardFund": 0.5,
      "cardWithdraw": 0.5,
      "transaction": 0
    },
    "wallet": {
      "balance": 5000,
      "currency": "USD",
      "active": true
    }
  }
}
Returns your partner account details including business info, fee configuration, and wallet balance.
Authorization
string
required
Bearer token. Example: Bearer sk_staging_your_api_key
{
  "status": "success",
  "message": "Partner profile retrieved",
  "data": {
    "serviceId": "acme-partner-abc123",
    "slug": "acme",
    "businessName": "Acme Corp",
    "email": "api@acme.com",
    "status": "active",
    "fees": {
      "userKyc": 1.5,
      "cardFund": 0.5,
      "cardWithdraw": 0.5,
      "transaction": 0
    },
    "wallet": {
      "balance": 5000,
      "currency": "USD",
      "active": true
    }
  }
}