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

# List Skills

> List all skills (portfolio + user's custom skills).



## OpenAPI

````yaml /api-reference/openapi.json get /api/skills
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/skills:
    get:
      tags:
        - skills
      summary: List Skills
      description: List all skills (portfolio + user's custom skills).
      operationId: list_skills_api_skills_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Get Portfolio Skills](/api-reference/skills/get-portfolio-skills.md)
- [Delete Skill](/api-reference/skills/delete-skill.md)
- [Get Skill](/api-reference/skills/get-skill.md)
- [Export Skill](/api-reference/skills/export-skill.md)
- [Update Skill](/api-reference/skills/update-skill.md)
