Quickstart with Pond3r

This guide will help you quickly create your first automated crypto intelligence report with Pond3r’s AI-powered analytics platform.

Creating Your First Report

The easiest way to start is by creating an automated report through our web interface.
1

Navigate to the report creation interface

Go directly to makeit.pond3r.xyz.
2

Describe what you want to track

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
3

AI generates your analysis

Pond3r’s AI data scientist will automatically create sophisticated Python analysis scripts and set up data ingestion from multiple sources.
4

Receive your first report

Your report will be delivered directly to your email inbox with executive summaries, statistical analysis, risk assessments, and actionable insights.

Quick API Integration

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);

Next steps

Now that you’ve created your first automated report with Pond3r: