Sponge Agents API

The Agents API from Sponge — 5 operation(s) for agents.

Operations 8

GET /api/agents/me Get current agent #
POST /api/agents/ List or create agents #
GET /api/agents/ List or create agents #
GET /api/agents/{id} Get, update, or delete an agent #
PUT /api/agents/{id} Get, update, or delete an agent #
DELETE /api/agents/{id} Get, update, or delete an agent #
GET /api/agents/{id}/api-key Get agent API key metadata #
POST /api/agents/{id}/regenerate-key Regenerate an agent API key #

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-agents-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-agents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sponge public Agents 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: Agents
paths:
  /api/agents/me:
    get:
      operationId: getApiAgentsMe
      tags:
      - Agents
      summary: Get current agent
      description: Get current agent via GET.
      responses:
        '200':
          description: Successful response.
  /api/agents/:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
          multipart/form-data:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
      operationId: postApiAgents
      tags:
      - Agents
      summary: List or create agents
      description: List or create agents via POST.
      responses:
        '200':
          description: Successful response.
    get:
      parameters:
      - name: includeBalances
        in: query
        required: false
        schema:
          type: string
      operationId: getApiAgents
      tags:
      - Agents
      summary: List or create agents
      description: List or create agents via GET.
      responses:
        '200':
          description: Successful response.
  /api/agents/{id}:
    get:
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: includeBalances
        in: query
        required: false
        schema:
          type: string
      operationId: getApiAgentsById
      tags:
      - Agents
      summary: Get, update, or delete an agent
      description: Get, update, or delete an agent via GET.
      responses:
        '200':
          description: Successful response.
    put:
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                status:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                status:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
          multipart/form-data:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                agentType:
                  type: string
                status:
                  type: string
                dailySpendingLimit:
                  type: string
                weeklySpendingLimit:
                  type: string
                monthlySpendingLimit:
                  type: string
                metadata:
                  type: object
      operationId: putApiAgentsById
      tags:
      - Agents
      summary: Get, update, or delete an agent
      description: Get, update, or delete an agent via PUT.
      responses:
        '200':
          description: Successful response.
    delete:
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      operationId: deleteApiAgentsById
      tags:
      - Agents
      summary: Get, update, or delete an agent
      description: Get, update, or delete an agent via DELETE.
      responses:
        '204':
          description: Successful response with no content.
  /api/agents/{id}/api-key:
    get:
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      operationId: getApiAgentsByIdApi-key
      tags:
      - Agents
      summary: Get agent API key metadata
      description: Get agent API key metadata via GET.
      responses:
        '200':
          description: Successful response.
  /api/agents/{id}/regenerate-key:
    post:
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties: {}
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties: {}
          multipart/form-data:
            schema:
              type: object
              properties: {}
      operationId: postApiAgentsByIdRegenerate-key
      tags:
      - Agents
      summary: Regenerate an agent API key
      description: Regenerate an agent API key via POST.
      responses:
        '200':
          description: Successful response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key