> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stablegenius.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Merchant

> Retrieve merchant details

# Get Merchant

Retrieves a merchant's profile, onboarding status, and configuration.

## Path Parameters

<ParamField path="id" type="string" required>
  The merchant ID (format: `mer_*`).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.stablegenius.co/v1/merchants/mer_abc123 \
    -H "Authorization: Bearer sk_test_abc123"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "mer_abc123",
    "object": "merchant",
    "business_name": "Bay Area Organic Farm",
    "email": "owner@bayareaorganics.com",
    "status": "active",
    "kyc_status": "approved",
    "payout_method": "bank_account",
    "bank_account": {
      "bank_name": "Wells Fargo",
      "last_4": "0468",
      "status": "verified"
    },
    "payment_address": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12",
    "chain": "base",
    "settlement_schedule": "weekly_monday",
    "fee_rate": 0.01,
    "created_at": "2026-03-15T10:00:00Z"
  }
  ```
</ResponseExample>
