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

# List Services

> Lists all services with stored keychain items.



## OpenAPI

````yaml api-reference/openapi.json get /api/keychain/list-services
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: http://localhost:4242/{computer_name}
    description: Local development server
    variables:
      computer_name:
        default: your-computer-name
        description: Computer name
security: []
paths:
  /api/keychain/list-services:
    get:
      tags:
        - keychain
      summary: List Services
      description: Lists all services with stored keychain items.
      operationId: listKeychainServices
      responses:
        '200':
          description: Successfully retrieved service list
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
                title: Response Listkeychainservices
              example:
                - github
                - gitlab
                - aws
        '500':
          description: Internal server error

````