Skip to main content
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
    }
  }
}

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.

Returns the latest completed audit for a project with issue counts. Issue counts reflect the current state after any dismissals.

Path parameters

projectId
string
required
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
    }
  }
}
Returns 404 if no completed audit exists for the project.