Skip to content

Get customer profile

Request

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
Security
ApiKeyAuth
curl -i -X GET \
  https://api.mailerlogic.net/api/v1/customer/profile \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Profile retrieved successfully

Bodyapplication/json
customerobject(CustomerProfile)
Response
{ "customer": { "id": "550e8400-e29b-41d4-a716-446655440000", "name": "Acme Corp", "email": "api@acme.com", "status": "active", "monthly_email_limit": 100000, "max_domains": 5, "webhook_endpoints_limit": 10, "tracking_enabled": true, "click_tracking_enabled": true, "open_tracking_enabled": true, "block_disposable_emails": true, "enforce_sender_verification": true, "created_at": "2024-01-15T10:30:00Z", "current_domains": 3, "emails_sent_this_month": 45230, "remaining_emails": 54770 } }