---
title: "List Groups"
method: GET
path: "/api/v1/groups"
tags: ["Groups"]
---

# List Groups

`GET /api/v1/groups`

Returns all groups for your organization, including associated websites. Requires a global API key. **Partner integrations** may pass `external_id` as a query parameter to find the Athena group mapped to a partner-supplied identifier.

## Query parameters

- `external_id` string

## Response `200`

Successful response with list of groups. Partner responses include an `externalId` field on each item (string or `null`); direct-customer responses omit the field entirely.

- object
  - `groups` Group[], required
    - `id` string, uuid, required — Unique identifier for the group
    - `name` string, required — Display name of the group
    - `orgId` string, uuid, required — The organization ID the group belongs to
    - `billingEnabled` boolean, required — Whether billing is enabled for this group
    - `createdAt` string, date-time, required — Timestamp when the group was created (UTC)
    - `websites` GroupWebsite[], required — Websites associated with this group
      - `id` string, uuid, required — Unique identifier for the website
      - `websiteUrl` string, required — The URL of the website
      - `websiteName` string, required — Display name of the website
    - `externalId` string, nullable — **Partner-only.** The partner-supplied identifier mapped to this group. Only present on responses to callers whose organization is flagged as a partner. Direct-customer responses omit the field entirely. `null` indicates no mapping exists for this group.

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Requires a global API key, or (when using the `external_id` filter) a partner API key.
- `500` — Internal server error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/versions/6c5d71622cb9/schema)
