> ## Documentation Index
> Fetch the complete documentation index at: https://nevermined.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List the organization's groups



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/groups
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/groups:
    get:
      tags:
        - Groups
      summary: List the organization's groups
      operationId: GroupsController_list
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization ID
          schema:
            type: string
            example: org-abc123
        - name: page
          required: false
          in: query
          description: Page number (1-based)
          schema:
            default: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Items per page (max 100)
          schema:
            default: 20
            type: number
        - name: includeInactive
          required: false
          in: query
          description: Include deactivated groups in the result
          schema:
            default: false
            type: boolean
      responses:
        '200':
          description: >-
            Envelope `{ success, groups: GroupResponseDto[], meta: { total,
            page, limit } }`
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupListResponseDto'
      security:
        - Authorization: []
components:
  schemas:
    GroupListResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        groups:
          type: array
          items:
            $ref: '#/components/schemas/GroupResponseDto'
        meta:
          $ref: '#/components/schemas/PaginationMetaDto'
      required:
        - success
        - groups
        - meta
    GroupResponseDto:
      type: object
      properties:
        groupId:
          type: string
          example: grp-abc123
        orgId:
          type: string
          example: org-abc123
        name:
          type: string
          example: Marketing
        description:
          type: string
          example: Growth, campaigns and content spend.
          nullable: true
        isActive:
          type: boolean
          example: true
        createdByUserId:
          type: string
          example: us-abc123
        memberCount:
          type: number
          description: Count of active members in the group
          example: 3
        createdAt:
          format: date-time
          type: string
          example: '2026-07-02T10:00:00.000Z'
      required:
        - groupId
        - orgId
        - name
        - description
        - isActive
        - createdByUserId
        - memberCount
        - createdAt
    PaginationMetaDto:
      type: object
      properties:
        total:
          type: number
          example: 42
          description: Total number of matching items
        page:
          type: number
          example: 1
          description: Page number (1-based)
        limit:
          type: number
          example: 20
          description: Items per page
      required:
        - total
        - page
        - limit
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [List the groups a wallet is shared with](/docs/api-reference/organizations--wallets/list-the-groups-a-wallet-is-shared-with.md)
- [List a group's shared payment methods](/docs/api-reference/groups/list-a-groups-shared-payment-methods.md)
- [List a group's budgets (one per currency)](/docs/api-reference/groups/list-a-groups-budgets-one-per-currency.md)
- [List organization activity events](/docs/api-reference/organizations--activity/list-organization-activity-events.md)
- [List the org wallets shared with a group (fund its budgets)](/docs/api-reference/organizations--wallets/list-the-org-wallets-shared-with-a-group-fund-its-budgets.md)
