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

# List vault entries

> Returns metadata (service name, type, label, credential key names) without any secret values.



## OpenAPI

````yaml /agent-openapi.json get /api/v1/vault/entries/{agent}
openapi: 3.1.0
info:
  title: Polpo API
  version: 1.0.0
  description: >-
    REST API for Polpo — an AI agent that manages teams of AI coding agents.
    Manage tasks, missions, agents, playbooks, skills, and approvals. For
    conversational interaction, use the OpenAI-compatible POST
    /v1/chat/completions endpoint.
servers:
  - url: http://localhost:3890
    description: Local development
security:
  - bearerAuth: []
paths:
  /api/v1/vault/entries/{agent}:
    get:
      tags:
        - Vault
      summary: List vault entries
      description: >-
        Returns metadata (service name, type, label, credential key names)
        without any secret values.
      parameters:
        - schema:
            type: string
          required: true
          name: agent
          in: path
      responses:
        '200':
          description: Vault entries metadata for the agent
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        service:
                          type: string
                        type:
                          type: string
                          enum:
                            - smtp
                            - imap
                            - oauth
                            - api_key
                            - login
                            - custom
                        label:
                          type: string
                        keys:
                          type: array
                          items:
                            type: string
                      required:
                        - service
                        - type
                        - keys
                required:
                  - ok
                  - data
        '503':
          description: Vault store not available
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  error:
                    type: string
                required:
                  - ok
                  - error
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key passed as a Bearer token. Configure via the apiKeys field in
        polpo.json or the POLPO_API_KEY environment variable.

````