- Developers
- API Reference
- Backlinks
Anchor Text
Get anchor text analysis showing the most common anchor texts in your backlink profile
GET
https://app.ranked.ai/api/v1/projects/{projectId}/backlinks/anchorsReturns aggregated anchor text data with counts and percentages.
projectIdstringrequiredProject UUID
limitnumberdefault: 50Maximum anchor texts to return (max: 1000)
offsetnumberdefault: 0Number to skip for pagination
Request
curl "https://app.ranked.ai/api/v1/projects/{projectId}/backlinks/anchors?limit=10" \
-H "Authorization: Bearer rk_live_your_api_key"Response
{
"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
}
}
}This page is also available as markdown for AI agents, and the whole reference as an OpenAPI spec. Questions? Developer support.