🔥 Burn Island API

Welcome to your Next.js API application!

📖 Interactive API Documentation

→ View Swagger UI Documentation

Try out all API endpoints directly in your browser with our interactive Swagger UI interface.

Available API Endpoints:

Quick Start:

  1. Run npm install to install dependencies
  2. Create .env.local with your PRIVATE_KEY and ZERODEV_RPC_URL
  3. Run npm run dev to start the development server
  4. Visit the API endpoints above or create your own in the app/api directory

🔥 NFT Transfer Endpoint

Send batch NFT transfers using ZeroDev account abstraction:

POST /api/transfer
{
  "transfers": [
    {
      "nftContract": "0x...",
      "fromAddress": "0x...",
      "tokenId": 123
    }
  ]
}

See the README for full documentation and examples.