curl "https://app.ranked.ai/api/v1/projects/{projectId}/audits/latest" \
-H "Authorization: Bearer rk_live_your_api_key"
{
"success": true,
"data": {
"id": "2e8b1269-d954-4b3b-a5e5-233bd44dfc28",
"target_url": "https://siouxcitytreeco.com/",
"status": "completed",
"crawl_progress": 100,
"pages_crawled": 34,
"pages_in_queue": 0,
"total_issues": 0,
"critical_issues": 0,
"warning_issues": 0,
"notice_issues": 0,
"started_at": "2026-05-03T20:06:21.861+00:00",
"completed_at": "2026-05-03T21:04:36.6+00:00",
"created_at": "2026-05-03T20:06:21.998Z",
"issues_summary": {
"passed": 11,
"failed": 0,
"total": 11
}
}
}
Audits
Latest Audit
Get the most recent completed audit with issue summary
GET
/
projects
/
{projectId}
/
audits
/
latest
curl "https://app.ranked.ai/api/v1/projects/{projectId}/audits/latest" \
-H "Authorization: Bearer rk_live_your_api_key"
{
"success": true,
"data": {
"id": "2e8b1269-d954-4b3b-a5e5-233bd44dfc28",
"target_url": "https://siouxcitytreeco.com/",
"status": "completed",
"crawl_progress": 100,
"pages_crawled": 34,
"pages_in_queue": 0,
"total_issues": 0,
"critical_issues": 0,
"warning_issues": 0,
"notice_issues": 0,
"started_at": "2026-05-03T20:06:21.861+00:00",
"completed_at": "2026-05-03T21:04:36.6+00:00",
"created_at": "2026-05-03T20:06:21.998Z",
"issues_summary": {
"passed": 11,
"failed": 0,
"total": 11
}
}
}
Returns the latest completed audit for a project with issue counts. Issue counts reflect the current state after any dismissals.
Returns
Path parameters
Project UUID
curl "https://app.ranked.ai/api/v1/projects/{projectId}/audits/latest" \
-H "Authorization: Bearer rk_live_your_api_key"
{
"success": true,
"data": {
"id": "2e8b1269-d954-4b3b-a5e5-233bd44dfc28",
"target_url": "https://siouxcitytreeco.com/",
"status": "completed",
"crawl_progress": 100,
"pages_crawled": 34,
"pages_in_queue": 0,
"total_issues": 0,
"critical_issues": 0,
"warning_issues": 0,
"notice_issues": 0,
"started_at": "2026-05-03T20:06:21.861+00:00",
"completed_at": "2026-05-03T21:04:36.6+00:00",
"created_at": "2026-05-03T20:06:21.998Z",
"issues_summary": {
"passed": 11,
"failed": 0,
"total": 11
}
}
}
404 if no completed audit exists for the project.⌘I