# 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/v1/customer/profile Version: 1.0.0 Security: ApiKeyAuth ## Response 200 fields (application/json): - `customer` (object) - `customer.id` (string) - `customer.name` (string) - `customer.email` (string) - `customer.status` (string) Enum: "active", "suspended", "pending" - `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.webhook_endpoints_limit` (integer) Maximum number of webhook endpoints allowed (1-50) Example: 10 - `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 - `customer.block_disposable_emails` (boolean) Block emails to disposable/temporary domains - `customer.enforce_sender_verification` (boolean) Require DKIM/SPF verification before sending ## Response 401 fields (application/json): - `error` (string) Error code or message ## Response 500 fields (application/json): - `error` (string) Error code or message