| title | Quickstart |
|---|---|
| description | Create your first automated crypto report in under 5 minutes |
This guide will help you quickly create your first automated crypto intelligence report with Pond3r's AI-powered analytics platform.
The easiest way to start is by creating an automated report through our web interface.
Go directly to [makeit.pond3r.xyz](https://makeit.pond3r.xyz). Use natural language to describe your analysis needs: ``` Track AI agent launches on Virtuals Protocol with graduation success rates ``` or ``` Monitor new tokens on Uniswap with less than $500K market cap and rising liquidity ``` Pond3r's AI data scientist will automatically create sophisticated Python analysis scripts and set up data ingestion from multiple sources. Your report will be delivered directly to your email inbox with executive summaries, statistical analysis, risk assessments, and actionable insights.For developers who want to integrate automated reports into their applications:
// Create an automated report
const response = await axios.post('https://api.pond3r.xyz/v1/api/reports', {
description: 'Track new tokens on Uniswap with rising liquidity',
schedule: 'daily',
delivery_format: 'structured_markdown'
}, {
headers: { 'x-api-key': 'YOUR_API_KEY' }
});
const reportId = response.data.reportId;
// Get latest report data
const report = await axios.get(`https://api.pond3r.xyz/v1/api/reports/${reportId}/latest`, {
headers: { 'x-api-key': 'YOUR_API_KEY' }
});
console.log(report.data.executiveSummary.keyFindings);Now that you've created your first automated report with Pond3r:
See examples of effective report descriptions for different analysis types Learn what chains, protocols, and data types Pond3r can analyze Get detailed information about report endpoints and structured data formats