Sponge Secrets API

The Secrets API from Sponge — 2 operation(s) for secrets.

Operations 4

POST /api/agent-keys Store a service key #
GET /api/agent-keys List stored keys #
DELETE /api/agent-keys Delete a stored key #
GET /api/agent-keys/value Get a stored key value #

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/sponge-secrets-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

sponge-secrets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sponge public Agents Secrets API
  version: 1.0.0
  description: Public REST endpoints for agents, wallets, transfers, payments, cards, MPP, trading, and fiat onramps.
servers:
- url: https://api.wallet.paysponge.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Secrets
paths:
  /api/agent-keys:
    post:
      operationId: postApiAgentKeys
      tags:
      - Secrets
      summary: Store a service key
      description: Store an encrypted non-card service key for this agent. Use /api/credit-cards for card details.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AgentKeyRequest'
            example:
              service: openai
              key: sk-...
              label: primary
      responses:
        '200':
          description: Successful response.
    get:
      operationId: getApiAgentKeys
      tags:
      - Secrets
      summary: List stored keys
      description: List stored key metadata for the agent. Values are not returned.
      parameters:
      - name: agentId
        in: query
        required: false
        schema:
          type: string
        description: Required when not authenticating with an agent API key.
      - name: service
        in: query
        required: false
        schema:
          type: string
        description: Optional service filter.
      responses:
        '200':
          description: Successful response.
    delete:
      operationId: deleteApiAgentKeys
      tags:
      - Secrets
      summary: Delete a stored key
      description: Delete a stored non-card service key by service. Credit cards are stored as agent payment methods.
      parameters:
      - name: service
        in: query
        required: true
        schema:
          type: string
        description: Service name.
      - name: agentId
        in: query
        required: false
        schema:
          type: string
        description: Required when not authenticating with an agent API key.
      responses:
        '200':
          description: Successful response.
  /api/agent-keys/value:
    get:
      operationId: getApiAgentKeysValue
      tags:
      - Secrets
      summary: Get a stored key value
      description: Retrieve one decrypted non-card key value. Credit cards are stored as agent payment methods and are not returned from this endpoint.
      parameters:
      - name: service
        in: query
        required: true
        schema:
          type: string
        description: Service name.
      - name: agentId
        in: query
        required: false
        schema:
          type: string
        description: Required when not authenticating with an agent API key.
      responses:
        '200':
          description: Successful response.
components:
  schemas:
    AgentKeyRequest:
      type: object
      required:
      - service
      - key
      properties:
        service:
          type: string
        key:
          type: string
        label:
          type: string
        metadata:
          type: object
          additionalProperties: true
        agentId:
          type: string
          description: Required when not authenticating with an agent API key.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key