Skip to main content
GET
/
projects
/
{projectId}
/
backlinks
/
anchors
curl "https://app.ranked.ai/api/v1/projects/{projectId}/backlinks/anchors?limit=10" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": [
    {
      "anchor_text": "tree service sioux city",
      "count": 8,
      "percentage": 13.8,
      "is_dofollow": true
    },
    {
      "anchor_text": "siouxcitytreeco.com",
      "count": 5,
      "percentage": 8.6,
      "is_dofollow": true
    }
  ],
  "meta": {
    "pagination": {
      "total": 9,
      "limit": 10,
      "offset": 0,
      "has_more": false
    }
  }
}

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 aggregated anchor text data with counts and percentages.
projectId
string
required
Project UUID
limit
number
default:"50"
Maximum anchor texts to return (max: 1000)
offset
number
default:"0"
Number to skip for pagination
curl "https://app.ranked.ai/api/v1/projects/{projectId}/backlinks/anchors?limit=10" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": [
    {
      "anchor_text": "tree service sioux city",
      "count": 8,
      "percentage": 13.8,
      "is_dofollow": true
    },
    {
      "anchor_text": "siouxcitytreeco.com",
      "count": 5,
      "percentage": 8.6,
      "is_dofollow": true
    }
  ],
  "meta": {
    "pagination": {
      "total": 9,
      "limit": 10,
      "offset": 0,
      "has_more": false
    }
  }
}