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

# List

> List all Vaults owned by account




## OpenAPI

````yaml https://raw.githubusercontent.com/ngrok/ngrok-openapi/refs/heads/main/ngrok.yaml get /vaults
openapi: 3.0.0
info:
  title: ngrok OpenAPI
  version: 1.0.0
servers:
  - url: https://api.ngrok.com
security:
  - authentication: []
paths:
  /vaults:
    get:
      tags:
        - Vaults
      summary: List
      description: |
        List all Vaults owned by account
      operationId: VaultsList
      parameters:
        - $ref: '#/components/parameters/ngrokVersion'
        - name: before_id
          description: >
            Expects a resource ID as its input. Returns earlier entries in the
            result set, sorted by ID.
          in: query
          required: false
          schema:
            type: string
        - name: limit
          description: >
            Constrains the number of results in the dataset. See the [API
            Overview](https://ngrok.com/docs/api/index#pagination) for details.
          in: query
          required: false
          schema:
            type: string
        - name: filter
          description: >
            A CEL expression to filter the list results. Supports logical and
            comparison operators to match on fields such as `id`, `metadata`,
            `created_at`, and more. See ngrok API Filtering for syntax and field
            details: https://ngrok.com/docs/api/api-filtering.
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: |
            List all Vaults owned by account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultList'
components:
  parameters:
    ngrokVersion:
      name: ngrok-version
      in: header
      required: true
      schema:
        type: integer
        default: 2
  schemas:
    VaultList:
      type: object
      properties:
        vaults:
          description: |
            The list of Vaults for this account
          type: array
          items:
            $ref: '#/components/schemas/Vault'
        uri:
          description: n/a
          type: string
        next_page_uri:
          description: |
            URI of the next page of results, or null if there is no next page
          type: string
    Vault:
      type: object
      properties:
        id:
          description: |
            identifier for Vault
          type: string
        uri:
          description: |
            URI of this Vault API resource
          type: string
        created_at:
          description: |
            Timestamp when the Vault was created (RFC 3339 format)
          type: string
        updated_at:
          description: |
            Timestamp when the Vault was last updated (RFC 3339 format)
          type: string
        name:
          description: |
            Name of vault
          type: string
        description:
          description: |
            description of Vault
          type: string
        metadata:
          description: |
            Arbitrary user-defined metadata for this Vault
          type: string
        created_by:
          description: |
            Reference to who created this Vault
          type: string
        last_updated_by:
          description: |
            Reference to who created this Vault
          type: string
  securitySchemes:
    authentication:
      type: http
      scheme: bearer

````