> ## 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.

# Get a group and its members



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/groups/{groupId}
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/{groupId}:
    get:
      tags:
        - Groups
      summary: Get a group and its members
      operationId: GroupsController_get
      parameters:
        - name: orgId
          required: true
          in: path
          schema:
            type: string
            example: org-abc123
        - name: groupId
          required: true
          in: path
          schema:
            type: string
            example: grp-abc123
      responses:
        '200':
          description: >-
            Envelope `{ success, group }` where `group` is a GroupResponseDto
            plus `members: GroupMemberResponseDto[]`
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupDetailEnvelopeDto'
        '404':
          description: Group not found
      security:
        - Authorization: []
components:
  schemas:
    GroupDetailEnvelopeDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        group:
          $ref: '#/components/schemas/GroupWithMembersDto'
      required:
        - success
        - group
    GroupWithMembersDto:
      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'
        members:
          type: array
          items:
            $ref: '#/components/schemas/GroupMemberResponseDto'
      required:
        - groupId
        - orgId
        - name
        - description
        - isActive
        - createdByUserId
        - memberCount
        - createdAt
        - members
    GroupMemberResponseDto:
      type: object
      properties:
        id:
          type: string
          example: gm-abc123
        groupId:
          type: string
          example: grp-abc123
        orgMemberId:
          type: string
          example: om-abc123
        isActive:
          type: boolean
          example: true
      required:
        - id
        - groupId
        - orgMemberId
        - isActive
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Remove a member from a group](/docs/api-reference/groups/remove-a-member-from-a-group.md)
- [Add an organization member to a group](/docs/api-reference/groups/add-an-organization-member-to-a-group.md)
- [Get per-member credit-burn attribution](/docs/api-reference/organizations--analytics/get-per-member-credit-burn-attribution.md)
- [Get a group's Router-rail (crypto) spend](/docs/api-reference/organizations--analytics/get-a-groups-router-rail-crypto-spend.md)
- [Groups & Budgets](/docs/solutions/organizations/groups-and-budgets.md)
