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

# List Collections

> List collections in the current workspace with skill counts.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/skill-collections/
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/skill-collections/:
    get:
      tags:
        - v1
        - protected
        - skill-collections
      summary: List Collections
      description: List collections in the current workspace with skill counts.
      operationId: list_collections_v1_skill_collections__get
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CollectionSummaryResponse'
                title: Response List Collections V1 Skill Collections  Get
                type: array
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    CollectionSummaryResponse:
      properties:
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        id:
          title: Id
          type: string
        name:
          title: Name
          type: string
        skill_count:
          title: Skill Count
          type: integer
      required:
        - id
        - name
        - description
        - skill_count
      title: CollectionSummaryResponse
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````