Use this file to discover all available pages before exploring further.
Use v0 to generate UI components that integrate with the Wallbit API. This guide shows how to configure v0 for better results when building interfaces for Wallbit API integrations.
Wallbit is a global neobank and the world’s first to offer a public API for programmatic account control. We offer US accounts, investments in ETFs, stocks and bonds, and local currency rails.The API allows you to:
When generating components, include API context in your prompts:Example 1: Balance display component
Create a React component that displays a user's checking account balance using the Wallbit API.The component should:- Fetch balance from GET /api/public/v1/balance/checking- Use X-API-Key header for authentication- Display currency and balance amount- Handle loading and error states- Use Tailwind CSS for styling
Example 2: Transaction list component
Build a transaction history component that:- Fetches from GET /api/public/v1/transactions- Supports filtering by status, currency, and date range- Shows transaction type, amount, and timestamp- Includes pagination- Uses the Wallbit API with X-API-Key authentication
Example 3: Trade execution form
Create a form component for executing stock trades via the Wallbit API:- POST to /api/public/v1/trades- Fields: symbol, direction (BUY/SELL), currency, order_type, amount- Include validation and error handling- Show success/error feedback- Use X-API-Key header
Copy and paste this prompt to v0 to generate a complete Wallbit account dashboard:
Create a beautiful, modern React dashboard for exploring a Wallbit account. The dashboard should have:1. Header Section: - Total balance across all checking accounts (from GET /api/public/v1/balance/checking) - Quick stats: total portfolio value, today's gain/loss2. Investment Portfolio Card: - Fetch from GET /api/public/v1/balance/stocks - Display positions in a table: Symbol, Shares, Current Value, Gain/Loss, % Change - Show total portfolio value at the top - Color-code gains (green) and losses (red) - Add a pie chart or bar chart showing asset allocation3. Recent Transactions Card: - Fetch from GET /api/public/v1/transactions with limit=10 - Show: Type, Amount, Currency, Status, Date - Filter buttons: All, Completed, Pending, Failed - Click to see more details4. Quick Trade Card: - Form to execute trades (POST /api/public/v1/trades) - Symbol search/select dropdown - Buy/Sell toggle buttons - Amount input with currency selector - Order type: Market or Limit - Submit button with loading state - Success/error toast notifications5. Account Balances Card: - Display all checking account balances - Show currency flag/icon - Format numbers with commas and decimalsUse the Wallbit API: https://api.wallbit.ioAuthentication: Include X-API-Key header from NEXT_PUBLIC_WALLBIT_API_KEYDesign with:- Tailwind CSS with a clean, professional look- shadcn/ui components (Card, Table, Button, Input, Select, Toast)- Dark mode support- Responsive grid layout- Loading skeletons- Error states with retry buttons- Smooth animationsMake it feel like a premium financial dashboard with proper spacing, typography, and visual hierarchy.