π§ Coming Soon
The Reports API is currently in development and will be available soon. The endpoints below show the planned functionality.
The Reports API is currently in development and will be available soon. The endpoints below show the planned functionality.
Overview
The Reports API provides programmatic access to Pond3rβs automated crypto intelligence reports. This API will allow you to:- Create automated analysis reports using natural language descriptions
- List and discover available reports
- Access historical report executions
- Retrieve report content in both markdown and structured JSON formats
Planned Endpoints
Create Report (Async)
POST /v1/api/reports
- Create a new automated report
Discover Reports
GET /v1/api/reports/discover
- List available API-enabled reports
List Report Executions
GET /v1/api/reports/{reportId}/executions
- Get execution history for a report
Get Markdown Content
GET /v1/api/reports/executions/{executionId}/markdown
- Retrieve markdown report content
Get JSON Content
GET /v1/api/reports/executions/{executionId}/json
- Retrieve structured JSON report content
Async Job Pattern
All report creation will follow this async pattern:- Submit Request - Get immediate job ID
- Poll Status - Check job completion
- Access Results - Use report ID to access executions
Job Status Polling
Query Parameters
Pagination
page
- Page number (default: 1)limit
- Items per page (default: 10, max: 100)
Content Filtering
contentType
- Filter by content type:markdown
,json
, orboth
Response Status Codes
200
- Success201
- Created (for new reports)202
- Accepted (async job submitted)400
- Bad Request401
- Unauthorized404
- Not Found429
- Rate Limited500
- Internal Server Error
Authentication
All endpoints require API key authentication via thex-api-key
header:
Rate Limits
- Report creation: 10 requests per hour
- Data access: 1000 requests per hour
- Job polling: 100 requests per minute
Want early access to the Reports API? Join our Discord community or contact us via Twitter to get notified when itβs available.