Merit Systems Send API

The Send API from Merit Systems — 1 operation(s) for send.

OpenAPI Specification

merit-systems-send-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: AgentCash Balances Send API
  description: Wallet management, search, and payment APIs for AgentCash.
  version: 0.1.2
  x-guidance: 'AgentCash exposes SIWX and paid endpoints for wallet-connected agents.


    ## SIWX endpoints (free, wallet identity required)

    - POST /api/search — search for relevant API origins by natural language query

    - POST /api/invite-codes — manage invite codes

    - POST /api/organizations — manage organizations


    ## Paid endpoints (x402 or MPP)

    - POST /api/send — send USDC on Base or Solana


    Registration is handled directly by x402scan (POST /api/x402/registry/register-origin) and mppscan (POST /api/mpp/register).'
  guidance: 'AgentCash exposes SIWX and paid endpoints for wallet-connected agents.


    ## SIWX endpoints (free, wallet identity required)

    - POST /api/search — search for relevant API origins by natural language query

    - POST /api/invite-codes — manage invite codes

    - POST /api/organizations — manage organizations


    ## Paid endpoints (x402 or MPP)

    - POST /api/send — send USDC on Base or Solana


    Registration is handled directly by x402scan (POST /api/x402/registry/register-origin) and mppscan (POST /api/mpp/register).'
  contact:
    name: Merit Systems
    url: https://merit.systems
servers:
- url: https://agentcash.dev
tags:
- name: Send
paths:
  /api/send:
    post:
      operationId: send
      summary: Send USDC to any address on Base, Solana, or Tempo
      tags:
      - Send
      x-payment-info:
        price:
          mode: dynamic
          currency: USD
          min: '0'
          max: '10000'
        protocols:
        - x402: {}
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                amount:
                  type: number
                  exclusiveMinimum: 0
                address:
                  type: string
                  minLength: 1
                network:
                  type: string
                  enum:
                  - base
                  - tempo
                  - solana
              required:
              - amount
              - address
              - network
      responses:
        '200':
          description: Successful response
        '402':
          description: Payment Required
components:
  securitySchemes:
    siwx:
      type: apiKey
      in: header
      name: SIGN-IN-WITH-X