> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pond3r.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Create your first automated crypto report in under 5 minutes

## 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.

<Steps>
  <Step title="Navigate to the report creation interface">
    Go directly to [makeit.pond3r.xyz](https://makeit.pond3r.xyz).
  </Step>

  <Step title="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
    ```
  </Step>

  <Step title="AI generates your analysis">
    Pond3r's AI data scientist will automatically create sophisticated Python analysis scripts and set up data ingestion from multiple sources.
  </Step>

  <Step title="Receive your first report">
    Your report will be delivered directly to your email inbox with executive summaries, statistical analysis, risk assessments, and actionable insights.
  </Step>
</Steps>

### Quick API Integration

For developers who want to integrate automated reports into their applications:

```javascript theme={null}
// 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:

<CardGroup>
  <Card title="Explore Report Examples" icon="book-open" href="examples">
    See examples of effective report descriptions for different analysis types
  </Card>

  <Card title="Browse Available Data" icon="database" href="onchain">
    Learn what chains, protocols, and data types Pond3r can analyze
  </Card>

  <Card title="Read API Documentation" icon="code" href="api-reference/introduction">
    Get detailed information about report endpoints and structured data formats
  </Card>
</CardGroup>
