YepAPI
Backlinks

Backlink Summary

Get aggregate backlink metrics for any domain — total links, referring domains, dofollow ratio.

POST/v1/seo/backlinks/summary
$0.03/call

Usage

const res = await fetch('https://api.yepapi.com/v1/seo/backlinks/summary', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ target: 'vercel.com' }),
});
const { data } = await res.json();
console.log(data);
curl -X POST https://api.yepapi.com/v1/seo/backlinks/summary \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"target": "vercel.com"}'

Request Body

ParameterTypeRequiredDescriptionDefault
targetstringYesDomain to get backlink summary for

Response

{
  "ok": true,
  "data": {
    "target": "vercel.com",
    "totalBacklinks": 12400000,
    "referringDomains": 45000,
    "referringIps": 32000,
    "dofollowBacklinks": 9800000,
    "nofollowBacklinks": 2600000,
    "brokenBacklinks": 145000,
    "domainRank": 89
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.targetstringThe domain that was analyzed
data.totalBacklinksnumberTotal number of backlinks pointing to the target
data.referringDomainsnumberNumber of unique domains linking to the target
data.referringIpsnumberNumber of unique IP addresses linking to the target
data.dofollowBacklinksnumberNumber of backlinks that pass link equity (dofollow)
data.nofollowBacklinksnumberNumber of backlinks marked as nofollow
data.brokenBacklinksnumberNumber of backlinks pointing to broken or non-existent pages
data.domainRanknumberOverall domain authority rank score
Under the Hood

Provides a high-level overview of a domain's backlink profile in a single call.

On this page