Documentation Index
Fetch the complete documentation index at: https://dev.ranked.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET - List reports
curl "https://app.ranked.ai/api/v1/projects/{projectId}/reports" \
-H "Authorization: Bearer rk_live_your_api_key"
POST - Create a report
Requires a Read + Write API key.
7days, 30days, 90days, or custom
Start date (ISO 8601). Required when date_range is custom.
End date (ISO 8601). Required when date_range is custom.
Optional report description
curl -X POST "https://app.ranked.ai/api/v1/projects/{projectId}/reports" \
-H "Authorization: Bearer rk_live_your_write_key" \
-H "Content-Type: application/json" \
-d '{
"title": "Monthly SEO Report",
"date_range": "30days"
}'