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

# Get Group

> Get detailed information about a specific group including its members

Get detailed information about a specific group including its members.


## OpenAPI

````yaml GET /v1/manage/group/{id}
openapi: 3.0.3
info:
  title: Requesty API
  description: Requesty API for AI model routing and key management
  version: 1.0.0
servers:
  - url: https://api-v2.requesty.ai
    description: Management API endpoint
  - url: https://router.requesty.ai
    description: Inference router endpoint
security:
  - BearerAuth: []
paths:
  /v1/manage/group/{id}:
    servers:
      - url: https://api-v2.requesty.ai
        description: Management API endpoint
    get:
      summary: Get group
      description: Get detailed information about a specific group including its members
      operationId: getGroup
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: The group ID
          example: 123e4567-e89b-12d3-a456-426614174000
      responses:
        '200':
          description: Successfully retrieved group
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetGroupResponse'
        '400':
          description: Bad request - malformed payload or invalid parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized - missing or empty Authorization header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Payment required - organization balance exhausted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden - invalid token or model not in access list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found - provider/model not supported.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded. Retry after the Retry-After header value.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Bad gateway - upstream provider returned an invalid response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    GetGroupResponse:
      type: object
      properties:
        group:
          $ref: '#/components/schemas/OrganizationGroup'
      required:
        - group
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - origin
            - message
          properties:
            origin:
              type: string
              enum:
                - router
                - provider
              description: >-
                Whether the error originated from Requesty's router or an
                upstream provider.
            message:
              type: string
              description: Human-readable error description.
    OrganizationGroup:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The group ID
          example: 123e4567-e89b-12d3-a456-426614174000
        organization_id:
          type: string
          description: The organization ID
          example: org-123
        name:
          type: string
          description: The group name
          example: Engineering Team
        monthly_limit:
          type: number
          format: double
          description: Monthly spending limit. null means unlimited.
          nullable: true
          example: 1000
        created_by:
          type: string
          description: User ID who created the group
          example: user-123
        created_at:
          type: string
          format: date-time
          description: When the group was created
          example: '2025-01-15T10:30:00Z'
        members:
          type: array
          items:
            $ref: '#/components/schemas/OrganizationGroupMember'
          description: List of group members
      required:
        - id
        - organization_id
        - name
        - created_by
        - created_at
        - members
    OrganizationGroupMember:
      type: object
      properties:
        id:
          type: string
          description: The member user ID
          example: user-123
        email:
          type: string
          format: email
          description: The member email
          example: user@example.com
        role:
          type: string
          enum:
            - admin
            - member
          description: The member role
          example: member
        monthly_limit:
          type: number
          format: double
          description: Monthly spending limit for the member
          nullable: true
          example: 500
        monthly_spend:
          type: number
          format: double
          description: Current monthly spending
          example: 250.5
        rate_limit:
          type: integer
          format: int64
          description: Rate limit for the member
          nullable: true
          example: 100
        active:
          type: boolean
          description: Whether the member is active
          example: true
      required:
        - id
        - email
        - role
        - monthly_spend
        - active
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key for authentication

````