Use this file to discover all available pages before exploring further.
Configure Windsurf’s Cascade AI assistant to help you build integrations with the Wallbit API. This guide shows how to set up Windsurf specifically for Wallbit development.
Copy and paste this prompt to Windsurf to generate a complete Wallbit account dashboard:
Create a comprehensive React dashboard for Wallbit account management with the following features:1. Balance Overview: - Fetch checking balances (GET /api/public/v1/balance/checking) - Display in cards showing currency and amount - Auto-refresh every 30 seconds2. Investment Portfolio: - Fetch stock portfolio (GET /api/public/v1/balance/stocks) - Show positions table: symbol, shares, current price, value, gain/loss percentage - Calculate total portfolio value and day change - Visual chart showing asset allocation3. Transaction Feed: - Fetch recent transactions (GET /api/public/v1/transactions) - Display with filters: status, type, currency, date range - Real-time updates - Export to CSV functionality4. Asset Search: - Browse available assets (GET /api/public/v1/assets) - Search by symbol or name - Click to view details (GET /api/public/v1/assets/{symbol})5. Trade Interface: - Execute trades (POST /api/public/v1/trades) - Form with validation - Preview order before submission - Show execution status6. Account Details: - Display bank account info (GET /api/public/v1/account-details) - Show ACH/SEPA details for depositsUse Wallbit API base: https://api.wallbit.ioAuth header: X-API-Key from WALLBIT_API_KEY env varBuild with Next.js, TypeScript, Tailwind CSS, shadcn/ui. Include error handling, loading states, toast notifications, and responsive design.