RankParse

Link Audit

Audit backlink quality, anchor text, risk flags, and outbound concentration.

Returns a composite link health report with backlink quality, anchor profile, risk flags, and outbound concentration signals. Costs 8 credits.

Parameters

ParameterTypeRequiredDescription
domainstringYesThe domain to audit, without https://

Request

curl "https://api.rankparse.com/v1/link-audit?domain=smartify.in" \
  -H "X-API-Key: rp_your_key"

Response

This endpoint returns the audit fields at the top level; it does not wrap them in a data object.

{
  "domain": "smartify.in",
  "health_score": 82,
  "risk_flags": [],
  "link_quality": {
    "high": 24,
    "medium": 31,
    "low": 7,
    "total": 62
  },
  "anchor_profile": {
    "branded": 0.42,
    "partial": 0.18,
    "generic": 0.16,
    "naked": 0.12,
    "image": 0.12
  },
  "top_backlinks": [
    {
      "from_domain": "searchenginejournal.com",
      "from_domain_score": 74,
      "anchor_type": "branded",
      "link_quality": "high"
    }
  ],
  "risk_backlinks": [],
  "outbound_summary": {
    "unique_destinations": 19,
    "top_domain": "github.com",
    "top_domain_concentration": 0.21
  },
  "credits_used": 8,
  "credits_remaining": 992,
  "crawl_release": "2026-07",
  "cached": false
}

On this page