> ## 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.

# Get Portfolio Skills

> List built-in portfolio skills only.



## OpenAPI

````yaml /api-reference/openapi.json get /api/skills/portfolio
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/portfolio:
    get:
      tags:
        - skills
      summary: Get Portfolio Skills
      description: List built-in portfolio skills only.
      operationId: get_portfolio_skills_api_skills_portfolio_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

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