/backlinks-summaryBacklink profile summary
$0.01
JSON
REST
Description
Returns a domain or page's backlink profile at a glance: total backlinks, referring domains, domain rank, spam score, broken links, and anchor/TLD distributions (flat object at result[0], no items array). The `rank` here is the target domain's own backlink-authority rank — a different metric from the per-referring-domain `rank` in backlink_gap/referring_domains rows, so the same domain can carry different numbers in each. Use it to qualify a site's authority in one cheap call before deeper link analysis.
Parameters
Content type: application/json
{
"type": "object",
"required": [
"target"
],
"properties": {
"target": {
"type": "string",
"description": "Domain, subdomain or full page URL. Domains without protocol; pages with protocol."
},
"include_subdomains": {
"type": "boolean",
"default": true,
"description": "Count links to subdomains too. Default true."
},
"exclude_internal_backlinks": {
"type": "boolean",
"default": true,
"description": "Ignore links from the target to itself. Default true."
}
}
}Responses
Backlink profile summary in `result[0]`.
{
"type": "object"
}Agent / Developer Schema
Machine-readable formats for integrating this endpoint into AI agents and toolchains.
{
"operationId": "backlinks_summary",
"method": "post",
"path": "/backlinks-summary",
"summary": "Backlink profile summary",
"description": "Returns a domain or page's backlink profile at a glance: total backlinks, referring domains, domain rank, spam score, broken links, and anchor/TLD distributions (flat object at result[0], no items array). The `rank` here is the target domain's own backlink-authority rank — a different metric from the per-referring-domain `rank` in backlink_gap/referring_domains rows, so the same domain can carry different numbers in each. Use it to qualify a site's authority in one cheap call before deeper link analysis.",
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"target"
],
"properties": {
"target": {
"type": "string",
"description": "Domain, subdomain or full page URL. Domains without protocol; pages with protocol."
},
"include_subdomains": {
"type": "boolean",
"default": true,
"description": "Count links to subdomains too. Default true."
},
"exclude_internal_backlinks": {
"type": "boolean",
"default": true,
"description": "Ignore links from the target to itself. Default true."
}
}
},
"example": {
"target": "close.com"
}
}
}
},
"responses": [
{
"statusCode": "200",
"description": "Backlink profile summary in `result[0]`.",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
{
"statusCode": "400",
"description": "Bad request or upstream task error."
},
{
"statusCode": "401",
"description": "Unauthorized."
},
{
"statusCode": "429",
"description": "Too many requests."
},
{
"statusCode": "5XX",
"description": "Upstream error."
}
]
}Pricing
Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.
Start using this endpoint
Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.