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

# Get v1vaultkeys



## OpenAPI

````yaml get /v1/vault/keys
openapi: 3.0.0
info:
  title: helicone-api
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
  - url: https://api.helicone.ai/
  - url: http://localhost:8585/
security: []
paths:
  /v1/vault/keys:
    get:
      tags:
        - Vault
      operationId: GetKeys
      parameters: []
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result_DecryptedProviderKey-Array.string_'
      security:
        - api_key: []
components:
  schemas:
    Result_DecryptedProviderKey-Array.string_:
      anyOf:
        - $ref: '#/components/schemas/ResultSuccess_DecryptedProviderKey-Array_'
        - $ref: '#/components/schemas/ResultError_string_'
    ResultSuccess_DecryptedProviderKey-Array_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/DecryptedProviderKey'
          type: array
        error:
          type: number
          enum:
            - null
          nullable: true
      required:
        - data
        - error
      type: object
      additionalProperties: false
    ResultError_string_:
      properties:
        data:
          type: number
          enum:
            - null
          nullable: true
        error:
          type: string
      required:
        - data
        - error
      type: object
      additionalProperties: false
    DecryptedProviderKey:
      properties:
        cuid:
          type: string
          nullable: true
        provider_secret_key:
          type: string
          nullable: true
        provider_key_name:
          type: string
          nullable: true
        provider_name:
          type: string
          nullable: true
        provider_key:
          type: string
          nullable: true
        org_id:
          type: string
          nullable: true
        id:
          type: string
          nullable: true
      required:
        - provider_secret_key
        - provider_key_name
        - provider_name
        - provider_key
        - org_id
        - id
      type: object
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''

````