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

# List project groups



## OpenAPI

````yaml /openapi.json get /api/projects/groups
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/projects/groups:
    get:
      tags:
        - Projects
      summary: List project groups
      responses:
        '200':
          description: Project groups for the organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  groups:
                    type: array
                    items:
                      $ref: '#/components/schemas/ProjectGroup'
                required:
                  - groups
      security:
        - bearerAuth: []
components:
  schemas:
    ProjectGroup:
      allOf:
        - $ref: '#/components/schemas/ProjectGroupSummary'
        - type: object
          properties:
            organizationId:
              type: string
            createdAt:
              type: string
            updatedAt:
              type: string
          required:
            - organizationId
            - createdAt
            - updatedAt
    ProjectGroupSummary:
      type: object
      properties:
        id:
          type: integer
          minimum: 0
          exclusiveMinimum: true
        name:
          type: string
        emoji:
          type: string
          nullable: true
      required:
        - id
        - name
        - emoji
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````