> ## 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.

# Get Profile

> Retrieve your partner profile and configuration

Returns your partner account details including business info, fee configuration, and wallet balance.

<ParamField header="Authorization" type="string" required>
  Bearer token. Example: `Bearer sk_staging_your_api_key`
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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,
        "walletAddress": "0x7Bd2Ae1cD10Ae3ed07Dd79deb3E20E6118dEcE69",
        "supportedNetworks": [
          { "chain": "base-sepolia", "chainId": 84532, "tokens": ["usdc"] },
          { "chain": "polygon-amoy", "chainId": 80002, "tokens": ["usdc"] },
          { "chain": "optimism-sepolia", "chainId": 11155420, "tokens": ["usdc"] }
        ]
      }
    }
  }
  ```

  ```json 401 theme={null}
  {
    "status": "error",
    "message": "Unauthorized",
    "data": {
      "error": "Invalid API key"
    }
  }
  ```
</ResponseExample>

<Note>
  `wallet.walletAddress` is your partner wallet's on-chain deposit address — send stablecoins here to top up your
  wallet balance. `wallet.supportedNetworks` lists the chain/token pairs that will be credited, and both fields
  are omitted if your wallet has no deposit address yet.

  The address is an EVM address, so it will *receive* on any EVM chain, but only the listed pairs are credited —
  anything else has to be recovered manually. Read the array at runtime rather than hardcoding a chain; the
  values differ between staging and production. See [Supported networks](/webhooks#supported-networks).
</Note>
