Organization API

Organizations represent the top-level entity in SuperSend. Each user belongs to an organization, and all teams, campaigns, and resources are associated with an organization. You can retrieve your orga

Get Organization

Organization Details:

bash
curl -X GET 'https://api.supersend.io/v1/org' -H "Authorization: Bearer <API_KEY>" -H "Content-Type: application/json"

# Response
{
  "success": true,
  "data": {
    "id": "org-uuid",
    "name": "Acme Corporation",
    "domain": "acme.com",
    "logo": "https://example.com/logo.png",
    "trial_ends": "2025-12-31T23:59:59Z",
    "activeSubscription": true,
    "current_plan": "professional",
    "onboarding_completed": true,
    "is_enterprise": false,
    "whitelabel": false,
    "whitelabel_domain": null,
    "whitelabel_status": null,
    "email_senders_limit": 10,
    "email_senders_used": 5,
    "linkedin_senders_limit": 5,
    "linkedin_senders_used": 2,
    "twitter_senders_limit": 3,
    "twitter_senders_used": 1,
    "email_limit": 50000,
    "email_limit_used": 12500,
    "contact_limit": 100000,
    "additional_emails": 0,
    "additional_contacts": 0,
    "additional_email_senders": 0,
    "additional_linkedin_senders": 0,
    "additional_twitter_senders": 0,
    "verification_credits": 1000,
    "mail_warm_reply_rate": 30,
    "mail_warm_id": "ABC123",
    "mail_warm_monitor_blacklist": true,
    "warm_tracking_domain": true,
    "read_emulation": true,
    "randomize_send_amount": true,
    "number_of_employees": 50,
    "purpose_of_outbound_email": "Sales outreach and customer engagement",
    "deleted": false,
    "deactivated": false,
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2025-11-27T10:30:00Z",
    "Price": {
      "id": "price-uuid",
      "name": "Professional Plan",
      "price": 99.00
    }
  }
}

Examples