Skip to main content
GET
/
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": "[email protected]",
    "status": "active",
    "fees": {
      "userKyc": 1.5,
      "cardFund": 0.5,
      "cardWithdraw": 0.5,
      "transaction": 0
    },
    "wallet": {
      "balance": 5000,
      "currency": "USD",
      "active": true
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getplu.com/llms.txt

Use this file to discover all available pages before exploring further.

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": "[email protected]",
    "status": "active",
    "fees": {
      "userKyc": 1.5,
      "cardFund": 0.5,
      "cardWithdraw": 0.5,
      "transaction": 0
    },
    "wallet": {
      "balance": 5000,
      "currency": "USD",
      "active": true
    }
  }
}