---
title: Organizations
---

## Get Organization
Get the current organization.
**Endpoint**: `GET /agent/v0/organizations`
**Authentication**: `Authorization: Bearer <token>`
### Responses

#### `200`

Response with status 200

Content-Type: `application/json`

##### Fields

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `authentication_id` | string | No | Provider-agnostic authentication ID. |
| `authentication_type` | string | No | Authentication provider type. |
| `billing_id` | string | No | Provider-agnostic billing customer ID. |
| `billing_subscription_id` | string | No | Active billing subscription ID. |
| `billing_type` | string | No | Billing provider type (e.g. "stripe"). |
| `created_at` | string | Yes | Time at which organization was created. |
| `domain_count` | integer | Yes | Current number of domains. |
| `domain_limit` | integer | No | Maximum number of domains allowed. |
| `inbox_count` | integer | Yes | Current number of inboxes. |
| `inbox_limit` | integer | No | Maximum number of inboxes allowed. |
| `organization_id` | string | Yes | ID of organization. |
| `updated_at` | string | Yes | Time at which organization was last updated. |

##### Example

```json
{
  "authentication_id": "<string>",
  "authentication_type": "<string>",
  "billing_id": "<string>",
  "billing_subscription_id": "<string>",
  "billing_type": "<string>",
  "created_at": "2026-01-01T00:00:00Z",
  "domain_count": 0,
  "domain_limit": 0,
  "inbox_count": 0,
  "inbox_limit": 0,
  "organization_id": "<string>",
  "updated_at": "2026-01-01T00:00:00Z"
}
```

