> ## 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 Skill Members

> List all child skills of a parent skill bundle.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/skills/{skill_id}/members
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/skills/{skill_id}/members:
    get:
      tags:
        - v1
        - protected
        - skills
      summary: List Skill Members
      description: List all child skills of a parent skill bundle.
      operationId: list_skill_members_v1_skills__skill_id__members_get
      parameters:
        - in: path
          name: skill_id
          required: true
          schema:
            format: uuid
            title: Skill Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/SkillMemberResponse'
                title: Response List Skill Members V1 Skills  Skill Id  Members Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    SkillMemberResponse:
      description: Skill member response model.
      properties:
        child_skill_id:
          title: Child Skill Id
          type: string
        dependencies:
          items:
            type: string
          title: Dependencies
          type: array
        is_required:
          title: Is Required
          type: boolean
        order:
          title: Order
          type: integer
        parent_skill_id:
          title: Parent Skill Id
          type: string
      required:
        - parent_skill_id
        - child_skill_id
        - order
        - is_required
        - dependencies
      title: SkillMemberResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````