Part 1: Open Ask AI
You can access Ask AI in two ways:- Click “Ask AI” in the left sidebar (chat bubble icon)
- Click the chat bubble in the bottom right corner of any page

Part 2: Ask Your First Question
Start with something straightforward. Click in the message box and type a question: Example: “How many unique wallets connected this week?” Hit enter. The AI will:- Parse your question
- Generate a SQL query from it
- Run the query against your data
- Return a summary, a chart, and the generated SQL

Part 3: Understand the Response
Each Ask AI response includes:- Summary: A plain English explanation of what the data shows
- Chart: A visualization of the results (line, bar, pie, etc.)
- SQL: The exact query the AI ran (you can copy and edit it)
Part 4: Ask Follow-Up Questions
This is where Ask AI gets powerful. Ask follow-ups without repeating context: You: “How many unique wallets connected this week?” AI: [Shows 12,453 wallets] You: “How many of those were new?” AI: [Filters to new wallets. Understands “those” = the wallets from last question] You: “What were their top referral sources?” AI: [Breaks down new wallets by referrer. Still understands the context] The AI maintains conversation memory, so each question builds on the previous one. No need to re-ask context.Part 5: Use the Insights Page for Automated Analysis
Beyond Ask AI, visit Insights in the sidebar for AI-generated analysis of your entire protocol:
Wins
Positive trends the AI detected (e.g., “DAU up 25% this week”)Issues
Problems worth investigating (e.g., “Retention dropped below historical average”)Opportunities
Actionable insights (e.g., “Traffic from Twitter is converting 3x better than Discord”)Actions
Recommended next steps based on your dataAcquisition Quality
Which channels bring the best LTV users?Activation
Which cohorts complete key actions fastest?Revenue
Which cohorts spend the most onchain?Churn Prediction
Which users are at risk of churning?Behavioral Insights
Common patterns in high-value usersPart 6: Save Your Questions as Dashboards
Found a question you want to check weekly? Save it:- Ask your question in Ask AI
- Click Save as Chart
- Name it and choose your board
- It’s now on your dashboard, auto-updating with new data
Questions to Ask
Be specific with dates and metrics. Instead of “How are we doing?” try “What’s my DAU compared to last week?” or “Show me conversion by traffic source for the last 30 days.”
- “What are my top referral sources by transaction count?” Find which channels drive the most revenue-generating traffic.
- “Which pages have the highest bounce rate?” Identify where users drop off and where to improve UX.
- “Show me daily active wallets for the last 30 days” Track your DAU trend and spot seasonal patterns.
- “What’s the conversion rate from wallet connect to transaction?” Understand your core funnel health.
- “Which UTM campaigns drove the most revenue this month?” Measure marketing ROI and double down on winners.
- “How does mobile vs desktop conversion compare?” Identify platform-specific opportunities.
- “What’s the average time between first visit and first transaction?” Measure your sales cycle and where to optimize.
- “Show me my top 10 users by transaction count” Find your whales and high-value cohorts.
- “Which wallet labels are most common in my user base?” Understand if you’re attracting bots, institutions, or retail.
- “Compare this week’s metrics to last week” Spot trends and anomalies at a glance.
Best Practices
Next Steps
- Create a custom dashboard to visualize key metrics
- Build a funnel to understand your acquisition flow
- Use the Explorer to write custom SQL queries for deeper analysis
- Set up wallet segmentation to analyze user cohorts
- See AI prompts for DeFi marketers for more question ideas
FAQ
Does the AI have access to all my data?
Does the AI have access to all my data?
Yes, Ask AI can query all events, properties, and custom SQL tables in your project schema. It respects your project’s permissions, so team members only see data they have access to.
How far back can I ask about historical data?
How far back can I ask about historical data?
You can query as far back as your project has data (usually from your first SDK install, months to years ago). Ask away: “Show me DAU for the last 6 months.”
Can I ask the AI to create a new event or property?
Can I ask the AI to create a new event or property?
No, Ask AI only reads and analyzes data. To create new events or properties, configure them in your SDK or contract events setup.