Introduction

The cross-chain DEX API built for AI agents. Suwappu gives your agent the ability to swap tokens across 15 blockchain networks through a single unified interface. Whether you're building an autonomous trading bot, a portfolio manager, or a conversational finance assistant, Suwappu handles routing, execution, and settlement so your agent can focus on strategy.

Why Suwappu?

  • 15 Chains -- Ethereum, Base, Arbitrum, Optimism, Solana, Polygon, BSC, Avalanche, Fantom, Linea, Mantle, Gnosis, Scroll, Sui, and TON

  • 9 Swap Providers -- Aggregated liquidity from leading DEXs and bridges for optimal pricing

  • 3 Protocols -- REST API, MCP (Model Context Protocol), and A2A (Agent-to-Agent) so your agent can connect however it works best

  • Managed Wallets -- Server-side key management and transaction signing, no private key handling in your agent

  • Natural Language -- Send plain English commands like "swap 0.5 ETH to USDC on Base" via the /execute endpoint

60-Second Quickstart

# 1. Register your agent (no auth needed)
curl -X POST https://api.suwappu.bot/v1/agent/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'
# Response: { "success": true, "api_key": "suwappu_sk_..." }

# 2. Get a swap quote
curl -X POST https://api.suwappu.bot/v1/agent/quote \
  -H "Authorization: Bearer suwappu_sk_..." \
  -H "Content-Type: application/json" \
  -d '{"from_token": "ETH", "to_token": "USDC", "amount": "0.5", "chain": "base"}'
# Response: { "success": true, "quote_id": "q_abc123", "expected_output": "985.42", ... }

# 3. Execute the swap
curl -X POST https://api.suwappu.bot/v1/agent/swap/execute \
  -H "Authorization: Bearer suwappu_sk_..." \
  -H "Content-Type: application/json" \
  -d '{"quote_id": "q_abc123"}'
# Response: { "success": true, "swap_id": "sw_xyz789", "status": "pending", ... }

# 4. Check swap status
curl https://api.suwappu.bot/v1/agent/swap/status/sw_xyz789 \
  -H "Authorization: Bearer suwappu_sk_..."
# Response: { "success": true, "status": "completed", "tx_hash": "0x...", ... }

Documentation

Section
Description

Get up and running in minutes

API keys, bearer tokens, and rate limits

Complete endpoint documentation

REST, MCP, and A2A integration guides

Supported networks and token lists

Cross-chain swaps, managed wallets, trading bots

Agent Discovery

Suwappu is built to be found and used by AI agents automatically:

Point your agent at any of these endpoints and it can start swapping tokens without reading a single page of docs.

Last updated