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

# List Skills

> Retrieve skills in the authenticated user's company. Use status=approved to return only skills with an approved, installable version.



## OpenAPI

````yaml /api-reference/openapi.json get /skills
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: >-
    API for interacting with Corgea's scanning and vulnerability management
    features
servers:
  - url: https://www.corgea.app/api/v1
    description: Production server
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /skills:
    get:
      tags:
        - Skills
      summary: List Skills
      description: >-
        Retrieve skills in the authenticated user's company. Use status=approved
        to return only skills with an approved, installable version.
      operationId: listSkills
      parameters:
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - approved
          description: When set to approved, only return skills with an approved version.
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
          description: The page number for pagination
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            default: 20
          description: The number of results per page
      responses:
        '200':
          description: Skills retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  page:
                    type: integer
                  total_pages:
                    type: integer
                  total_skills:
                    type: integer
                  skills:
                    type: array
                    items:
                      $ref: '#/components/schemas/Skill'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Permission denied
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Permission denied
components:
  schemas:
    Skill:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          example: secure-review
        slug:
          type: string
          example: secure-review
        description:
          type: string
          example: Review code for security issues.
        status:
          type: string
          nullable: true
          enum:
            - pending_review
            - approved
            - rejected
            - failed
        is_installable:
          type: boolean
          description: Whether the skill has an approved version that can be installed
        latest_version:
          type: string
          nullable: true
          example: 1.0.1
        latest_approved_version:
          type: string
          nullable: true
          example: 1.0.0
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Invalid or missing token
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Missing or invalid authorization header
  securitySchemes:
    CorgeaToken:
      type: apiKey
      in: header
      name: CORGEA-TOKEN
      description: API key for authentication
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth2 access token (JWT) in the Authorization header

````