Sponge Transfers API

The Transfers API from Sponge — 9 operation(s) for transfers.

Operations 9

POST /api/transfers/evm Send an EVM transfer #
POST /api/transfers/solana Send a Solana transfer #
GET /api/solana/tokens List Solana wallet tokens #
GET /api/solana/tokens/search Search Solana tokens #
GET /api/transactions/history Get transaction history #
GET /api/transactions/status/{txHash} Get transaction status #
POST /api/transactions/swap Swap on Solana #
POST /api/transactions/base-swap Swap on Base #
POST /api/transactions/bridge Bridge across chains #

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-transfers-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-transfers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sponge public Agents Transfers 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: Transfers
paths:
  /api/transfers/evm:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - ETH
                  - USDC
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - ETH
                  - USDC
          multipart/form-data:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - ETH
                  - USDC
      operationId: postApiTransfersEvm
      tags:
      - Transfers
      summary: Send an EVM transfer
      description: Send an EVM transfer via POST.
      responses:
        '200':
          description: Successful response.
  /api/transfers/solana:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - SOL
                  - USDC
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - SOL
                  - USDC
          multipart/form-data:
            schema:
              type: object
              required:
              - chain
              - to
              - amount
              - currency
              properties:
                chain:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  enum:
                  - SOL
                  - USDC
      operationId: postApiTransfersSolana
      tags:
      - Transfers
      summary: Send a Solana transfer
      description: Send a Solana transfer via POST.
      responses:
        '200':
          description: Successful response.
  /api/solana/tokens:
    get:
      parameters:
      - name: chain
        in: query
        required: true
        schema:
          type: string
      operationId: getApiSolanaTokens
      tags:
      - Transfers
      summary: List Solana wallet tokens
      description: List Solana wallet tokens via GET.
      responses:
        '200':
          description: Successful response.
  /api/solana/tokens/search:
    get:
      parameters:
      - name: query
        in: query
        required: true
        schema:
          type: string
      - name: limit
        in: query
        required: false
        schema:
          type: string
      operationId: getApiSolanaTokensSearch
      tags:
      - Transfers
      summary: Search Solana tokens
      description: Search Solana tokens via GET.
      responses:
        '200':
          description: Successful response.
  /api/transactions/history:
    get:
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: string
      - name: chain
        in: query
        required: false
        schema:
          type: string
      operationId: getApiTransactionsHistory
      tags:
      - Transfers
      summary: Get transaction history
      description: Get transaction history via GET.
      responses:
        '200':
          description: Successful response.
  /api/transactions/status/{txHash}:
    get:
      parameters:
      - name: txHash
        in: path
        required: true
        schema:
          type: string
      - name: chain
        in: query
        required: true
        schema:
          type: string
      operationId: getApiTransactionsStatusByTxHash
      tags:
      - Transfers
      summary: Get transaction status
      description: Get transaction status via GET.
      responses:
        '200':
          description: Successful response.
  /api/transactions/swap:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
          multipart/form-data:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
      operationId: postApiTransactionsSwap
      tags:
      - Transfers
      summary: Swap on Solana
      description: Swap on Solana via POST.
      responses:
        '200':
          description: Successful response.
  /api/transactions/base-swap:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
          multipart/form-data:
            schema:
              type: object
              required:
              - chain
              - inputToken
              - outputToken
              - amount
              properties:
                chain:
                  type: string
                inputToken:
                  type: string
                outputToken:
                  type: string
                amount:
                  type: string
                slippageBps:
                  type: number
      operationId: postApiTransactionsBase-swap
      tags:
      - Transfers
      summary: Swap on Base
      description: Swap on Base via POST.
      responses:
        '200':
          description: Successful response.
  /api/transactions/bridge:
    post:
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - sourceChain
              - destinationChain
              - token
              - amount
              properties:
                sourceChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                destinationChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                token:
                  type: string
                amount:
                  type: string
                destinationToken:
                  type: string
                recipientAddress:
                  type: string
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - sourceChain
              - destinationChain
              - token
              - amount
              properties:
                sourceChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                destinationChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                token:
                  type: string
                amount:
                  type: string
                destinationToken:
                  type: string
                recipientAddress:
                  type: string
          multipart/form-data:
            schema:
              type: object
              required:
              - sourceChain
              - destinationChain
              - token
              - amount
              properties:
                sourceChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                destinationChain:
                  type: string
                  enum:
                  - ethereum
                  - base
                  - polygon
                  - arbitrum-one
                  - hyperliquid
                  - solana
                token:
                  type: string
                amount:
                  type: string
                destinationToken:
                  type: string
                recipientAddress:
                  type: string
      operationId: postApiTransactionsBridge
      tags:
      - Transfers
      summary: Bridge across chains
      description: Bridge across chains via POST.
      responses:
        '200':
          description: Successful response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key