🔥 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:
- GET /api/health - Health check endpoint
- POST /api/transfer - Execute batch NFT transfers (ZeroDev)
Quick Start:
- Run
npm installto install dependencies - Create
.env.localwith yourPRIVATE_KEYandZERODEV_RPC_URL - Run
npm run devto start the development server - Visit the API endpoints above or create your own in the
app/apidirectory
🔥 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.