Midday’s AI Assistant is your intelligent financial companion that understands your business data and provides insights, answers questions, and generates visualizations. From revenue analysis to expense tracking, the assistant helps you make data-driven decisions.
const exampleQueries = [ // Revenue & Income "What was my revenue last month?", "Show me revenue trends for Q1", "Compare revenue this year vs last year", // Expenses "What are my biggest expenses?", "Show me spending by category", "How much did I spend on marketing?", // Transactions "Find all transactions over $1000", "Show uncategorized transactions", "What did I spend at Acme Corp?", // Invoicing "How many unpaid invoices do I have?", "What's my average time to payment?", "Show me overdue invoices", // Time & Productivity "How many hours did I track this week?", "Show me time by project", "What's my most profitable project?", // General "Give me a business overview", "Show me my burn rate", "What's my profit margin?"]
The assistant understands natural language, so you can ask questions conversationally. No need to use specific commands or syntax.
// Simple text answers for quick questionsconst textResponse = { type: "text", content: "Your revenue last month was $42,500, up 15% from the previous month.", context: { period: "2026-02", currency: "USD" }}
// Charts and graphs for data-heavy queriesconst chartResponse = { type: "artifact", artifactType: "chart", data: {/* Chart data */}, config: { type: "line", title: "Revenue Trend", period: "6mo" }}
// Structured data in table formatconst tableResponse = { type: "artifact", artifactType: "table", data: {/* Table data */}, sortable: true, filterable: true}
const chatHistory = { autoSave: true, // Saves as you type persistence: "permanent", // Never expires searchable: true, // Find old conversations shareable: true // Share with team}
The assistant can handle complex, multi-part questions:
const complexQuery = [ "Compare my revenue from Q1 2026 to Q1 2025", "then break it down by category", "and show me which categories grew the most"]// Assistant handles all three parts sequentially
You: "Show me my expenses last month"Assistant: [Shows expense breakdown]You: "What about the month before?"Assistant: [Adjusts to previous month]You: "Compare them side by side"Assistant: [Shows comparison chart]
const privacy = { conversationStorage: "encrypted", dataAnonymization: false, // Your data stays yours thirdPartySharing: false, // Never shared trainingData: false, // Not used for AI training deletion: "immediate" // Delete chat = delete all data}
Midday uses AI models from OpenAI (GPT-4) and Anthropic (Claude). Your data is sent to these providers for processing but is not stored or used for training.
"Give me a financial overview for February 2026""Show me all uncategorized transactions""What's my profit margin this month?""Compare revenue to last month"
"How many hours did I track for Acme Corp?""Show unpaid invoices for February""What's my average invoice amount?""Compare billable vs non-billable hours"