Skip to main content
Retrieve your organisation details including subscription plan, member count, and account metadata.

Overview

The Get Organisation endpoint returns the authenticated organisation’s profile and subscription information. Use this to display account details, verify subscription status, or check team size.

Authentication

Requires a valid API key. No special permission scope is needed beyond a valid key.

Key Features

  • Subscription Info: Current plan, status, and billing period end date
  • Team Details: Member count and organisation metadata
  • No Credit Cost: This endpoint is free to use
curl -X GET "https://api.trigify.io/v1/org" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "success": true,
  "data": {
    "id": "org_xxx",
    "user_id": "user_xxx",
    "name": "Trigify",
    "slug": "trigify-123",
    "website": null,
    "subscription": {
      "plan": "ENTERPRISE",
      "status": "ACTIVE",
      "current_period_end": "2025-10-25T09:31:06.000Z"
    },
    "member_count": 1,
    "created": "2025-09-04T13:44:35.954Z"
  }
}

Response Fields

FieldTypeDescription
idstringUnique organisation identifier
user_idstringOwner user identifier
namestringOrganisation display name
slugstringURL-safe organisation slug
websitestring | nullOrganisation website URL
subscription.planstringCurrent plan: FREE, PRO, ENTERPRISE, or CUSTOM
subscription.statusstringSubscription status: ACTIVE, INACTIVE, PAST_DUE, or CANCELLED
subscription.current_period_endstringISO 8601 date when the current billing period ends
member_countintegerNumber of members in the organisation
createdstringISO 8601 date when the organisation was created

Credit Usage

This endpoint is free and does not consume credits.