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

# Lists all available skills

> Returns all published skills available to your account, with their identifiers, names, and types. Skills that have never been published are not included. Use the returned `id` as the `skillId` when creating or launching transactions. Note that `id` is not always a GUID; built-in skills use ids such as `workspace.default.processing`.



## OpenAPI

````yaml /openapi.json get /api/publicapi/v1/skills
openapi: 3.0.1
info:
  title: Vantage processing REST API
  description: >-
    The Vantage Processing REST API lets you process documents programmatically:
    create transactions, upload files, launch skills, monitor progress, and
    download results. For authentication and a first end-to-end request, see the
    [Getting started guide](/vantage/developer/getting-started).
  version: '1.0'
  x-application-version: 1.0.0-20251028.13+6e102d0c2a7a440df9ee9615e09b3c8c333587ac
servers:
  - url: https://vantage-us.abbyy.com
    description: Production United States
  - url: https://vantage-eu.abbyy.com
    description: Production Europe
  - url: https://vantage-au.abbyy.com
    description: Production Australia
security:
  - OAuth2Security:
      - global.wildcard
      - openid
      - permissions
paths:
  /api/publicapi/v1/skills:
    get:
      tags:
        - Skills
      summary: Lists all available skills
      description: >-
        Returns all published skills available to your account, with their
        identifiers, names, and types. Skills that have never been published are
        not included. Use the returned `id` as the `skillId` when creating or
        launching transactions. Note that `id` is not always a GUID; built-in
        skills use ids such as `workspace.default.processing`.
      operationId: GetAvailableSkills
      responses:
        '200':
          description: All skills are successfully returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Skills.Results.SkillListItemDto
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Skills.Results.SkillListItemDto
            text/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Skills.Results.SkillListItemDto
components:
  schemas:
    Abbyy.Vantage.PublicApi.Contract.Skills.Results.SkillListItemDto:
      required:
        - id
        - name
      type: object
      properties:
        id:
          minLength: 1
          type: string
          description: >-
            Identifier of the skill. Use this value as the `skillId` in
            transaction requests.
        name:
          minLength: 1
          type: string
          description: Name of the skill as shown in Vantage.
        type:
          $ref: >-
            #/components/schemas/Abbyy.Vantage.PublicApi.Contract.Skills.SkillType
          description: >-
            Type of the skill. One of `Classification`, `Document`, `Process`,
            `Ocr`, or `Assembling`.
      additionalProperties: false
    Abbyy.Vantage.PublicApi.Contract.Skills.SkillType:
      enum:
        - Classification
        - Document
        - Process
        - Ocr
        - Assembling
      type: string
  securitySchemes:
    OAuth2Security:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://vantage-us.abbyy.com/auth2/connect/authorize
          tokenUrl: https://vantage-us.abbyy.com/auth2/connect/token
          scopes:
            global.wildcard: Global wildcard
            openid: User Id
            permissions: User permissions

````