# Get customer profile Retrieve your account profile including: - Current usage and remaining quota - Domain limits and tracking settings - API key (masked for security) Use this to: - Monitor monthly email usage - Check available resources - Verify account status Endpoint: GET /api/customer/profile Version: 1.0.0 Security: BearerAuth ## Response 200 fields (application/json): - `customer` (object) - `customer.id` (string) - `customer.name` (string) - `customer.email` (string) - `customer.status` (string) Enum: "active", "suspended", "pending" - `customer.webhook_url` (any) - `customer.tracking_enabled` (boolean) - `customer.click_tracking_enabled` (boolean) - `customer.open_tracking_enabled` (boolean) - `customer.created_at` (string) - `customer.monthly_email_limit` (integer) Monthly email sending limit - `customer.max_domains` (integer) Maximum number of domains allowed - `customer.current_domains` (integer) Current number of domains registered - `customer.emails_sent_this_month` (integer) Emails sent in current month - `customer.remaining_emails` (integer) Remaining emails for current month ## Response 401 fields (application/json): - `error` (string) Error code or message ## Response 500 fields (application/json): - `error` (string) Error code or message