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

# List Teammate Groups

> Returns a list of all teammate groups in the company.



## OpenAPI

````yaml GET /teammate-groups
openapi: 3.0.1
info:
  title: Alpharun API
  description: Alpharun REST API reference
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.alpharun.com/api/v1
security:
  - bearerAuth: []
paths:
  /teammate-groups:
    get:
      description: Returns a list of all teammate groups in the company.
      responses:
        '200':
          description: List of teammate groups
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      teammate_groups:
                        type: array
                        items:
                          $ref: '#/components/schemas/TeammateGroup'
              example:
                data:
                  teammate_groups:
                    - id: 770e8400-e29b-41d4-a716-446655440002
                      name: Engineering Team
                      teammate_ids:
                        - 550e8400-e29b-41d4-a716-446655440000
                        - 550e8400-e29b-41d4-a716-446655440003
                    - id: 880e8400-e29b-41d4-a716-446655440003
                      name: Sales Team
                      teammate_ids:
                        - 550e8400-e29b-41d4-a716-446655440004
components:
  schemas:
    TeammateGroup:
      type: object
      required:
        - id
        - name
        - teammate_ids
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier of the teammate group
        name:
          type: string
          description: Name of the teammate group
        teammate_ids:
          type: array
          items:
            type: string
            format: uuid
          description: List of teammate IDs belonging to this group
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````