API Reference Overview
Base URL for all endpoints:
https://mvp.amlyou.com/api
Endpoints
| Method | Endpoint | Rate Limit | Description |
|---|---|---|---|
GET | /analysis/{wallet} | 3 req/min | Analyze a wallet address |
GET | /analysis/jobs/{jobID} | 12 req/min | Check analysis job status |
GET | /analysis/check/{wallet} | 12 req/min | Check if address is already analyzed |
GET | /analysis/aggregated/{wallet} | 12 req/min | Get aggregated multi-network report |
Authentication
All API endpoints require an API key. You can obtain one from your dashboard at amlyou.com.
Pass your key via the X-API-Key header or Authorization: Bearer ak_... header. See Authentication for details.
Request Format
- Path parameters are required
- Query parameters are optional unless noted otherwise
Response Format
All responses return JSON.
Error responses use this structure:
{
"error": {
"code": "error_code",
"message": "Human-readable description"
}
}