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

# List Skills

> List all skills from the database.

- Authenticated user: returns their org's skills + public skills.
- Guest user: returns public skills only (guest org has no skills).

Query parameters:
- limit/offset: Pagination controls.
- order_by: Sort field (created_at, updated_at, name). Default: created_at.
- descending: Sort direction. Default: true.
- grouped: When true, returns only the latest version of each skill name.

<RequestExample>
  ```python Python theme={"theme":{"light":"github-light","dark":"dark-plus"}}
  !pip install vlmrun

  from vlmrun.client import VLMRun

  client = VLMRun(api_key="<VLMRUN_API_KEY>")

  # List all skills
  skills = client.agent.skills.list()
  for skill in skills:
      print(f"{skill.name} (v{skill.version}): {skill.description}")
  ```

  ```typescript Node.js SDK theme={"theme":{"light":"github-light","dark":"dark-plus"}}
  import { VlmRun } from "vlmrun";

  const client = new VlmRun({
    baseURL: "https://api.vlm.run/v1",
    apiKey: "<VLMRUN_API_KEY>"
  });

  const skills = await client.agent.skills.list();
  console.log(skills);
  ```

  ```bash cURL theme={"theme":{"light":"github-light","dark":"dark-plus"}}
  curl -X GET "https://api.vlm.run/v1/skills" \
    -H "Authorization: Bearer <VLMRUN_API_KEY>"
  ```
</RequestExample>


## OpenAPI

````yaml GET /v1/skills
openapi: 3.1.0
info:
  title: VLM Run Unified Server
  description: Unified server for VLM Run Agent and API
  termsOfService: https://vlm.run/terms-of-service
  contact:
    name: VLM Run Support Team
    url: https://vlm.run/
    email: support@vlm.run
  version: 2026-05-19.0
servers: []
security: []
paths:
  /v1/skills:
    get:
      tags:
        - skills
      summary: List Skills
      description: >-
        List all skills from the database.


        - Authenticated user: returns their org's skills + public skills.

        - Guest user: returns public skills only (guest org has no skills).


        Query parameters:

        - limit/offset: Pagination controls.

        - order_by: Sort field (created_at, updated_at, name). Default:
        created_at.

        - descending: Sort direction. Default: true.

        - grouped: When true, returns only the latest version of each skill
        name.
      operationId: list_skills_v1_skills_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            description: Maximum number of items to return
            default: 50
            title: Limit
          description: Maximum number of items to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of items to skip
            default: 0
            title: Offset
          description: Number of items to skip
        - name: order_by
          in: query
          required: false
          schema:
            type: string
            description: Field to order by (created_at, updated_at, name)
            default: created_at
            title: Order By
          description: Field to order by (created_at, updated_at, name)
        - name: descending
          in: query
          required: false
          schema:
            type: boolean
            description: Sort in descending order
            default: true
            title: Descending
          description: Sort in descending order
        - name: grouped
          in: query
          required: false
          schema:
            type: boolean
            description: Group by skill name, returning only the latest version of each
            default: false
            title: Grouped
          description: Group by skill name, returning only the latest version of each
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SkillInfoResponse'
                title: Response List Skills V1 Skills Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    SkillInfoResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique skill identifier
        name:
          type: string
          title: Name
          description: Name of the skill
        description:
          type: string
          title: Description
          description: Description of the skill
        skill_version:
          type: string
          title: Skill Version
          description: Version of the skill
          default: latest
        skill_uri:
          anyOf:
            - type: string
            - type: 'null'
          title: Skill Uri
          description: GCS URI of the skill zip file
        is_public:
          type: boolean
          title: Is Public
          description: Whether the skill is publicly accessible
          default: false
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
          description: Date and time when the skill was created
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
          description: Date and time when the skill was updated
      type: object
      required:
        - id
        - name
        - description
      title: SkillInfoResponse
      description: Skill information response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````