Phosphorus Vault API

The Vault API from Phosphorus — 2 operation(s) for vault.

Operations 5

POST /api/v3/vault Creates a secret in the Phosphorus Vault #
GET /api/v3/vault Retrieve a list of secrets from the Phosphorus Vault #
PUT /api/v3/vault Updates Phosphorus Vault to default #
PUT /api/v3/vault/{id} Updates a secret in the Phosphorus Vault by creating a new version #
GET /api/v3/vault/{id} Retrieve a specific secret out of the Phosphorus Vault #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/phosphorus-vault-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

phosphorus-vault-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger documentation for the Phosphorus API
  version: 2.0.0
  title: Phosphorus Vault API
servers:
- url: /
  description: Server
tags:
- name: Vault
paths:
  /api/v3/vault:
    post:
      tags:
      - Vault
      summary: Creates a secret in the Phosphorus Vault
      description: ''
      operationId: createSecretv3
      deprecated: false
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/createSecretBody'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/createSecretResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
    get:
      tags:
      - Vault
      summary: Retrieve a list of secrets from the Phosphorus Vault
      description: ''
      operationId: listSecretsv3
      deprecated: false
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getSecretsResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
    put:
      tags:
      - Vault
      summary: Updates Phosphorus Vault to default
      description: ''
      operationId: updateNativeVaultToDefaultv3
      deprecated: false
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/updateVaultToDefaultBody'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getSecretsResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
  /api/v3/vault/{id}:
    put:
      tags:
      - Vault
      summary: Updates a secret in the Phosphorus Vault by creating a new version
      description: ''
      operationId: updateSecretv3
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/updateSecretBody'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/updateSecretResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
    get:
      tags:
      - Vault
      summary: Retrieve a specific secret out of the Phosphorus Vault
      description: ''
      operationId: getSecretv3
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getReportDataResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
components:
  schemas:
    getReportDataResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        externalId:
          type: string
        provider:
          type: string
        version:
          type: string
        login:
          type:
          - string
          - 'null'
        password:
          type:
          - string
          - 'null'
      required:
      - id
      - name
      - externalId
      - provider
      - version
      - login
      - password
      additionalProperties: false
    updateSecretBody:
      type: object
      properties:
        login:
          type:
          - string
          - 'null'
        password:
          type:
          - string
          - 'null'
      required:
      - login
      - password
      additionalProperties: false
    updateSecretResponse:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        version:
          type:
          - string
          - 'null'
      required:
      - name
      - version
      additionalProperties: false
    updateVaultToDefaultBody:
      type: object
      properties:
        isDefault:
          type: boolean
      required:
      - isDefault
      additionalProperties: false
    createSecretResponse:
      type: object
      properties:
        secret:
          type:
          - string
          - 'null'
      required:
      - secret
      additionalProperties: false
    createSecretBody:
      type: object
      properties:
        login:
          type:
          - string
          - 'null'
        password:
          type:
          - string
          - 'null'
        name:
          type: string
        serialNumber:
          type:
          - string
          - 'null'
      required:
      - login
      - password
      - name
      additionalProperties: false
    getSecretsResponse:
      type: array
      items:
        type: object
        properties:
          name:
            type: string
          externalId:
            type: string
        required:
        - name
        - externalId
        additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY