Backlinks
Page Intersection
Find pages that link to multiple targets — granular link prospecting.
POST
from $0.04/call/v1/seo/backlinks/page-intersectionUsage
const res = await fetch('https://api.yepapi.com/v1/seo/backlinks/page-intersection', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ targets: ['vercel.com', 'netlify.com'], limit: 50 }),
});
const { data } = await res.json();
console.log(data);curl -X POST https://api.yepapi.com/v1/seo/backlinks/page-intersection \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"targets": ["vercel.com", "netlify.com"], "limit": 50}'Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
targets | string[] | Yes | Domains to find common backlinks for | — |
excludeTargets | string[] | No | Domains to exclude | — |
limit | number | No | Maximum number of intersections to return | 100 |
Response
{
"ok": true,
"data": {
"intersections": []
}
}Response Fields
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the request succeeded |
data.intersections | array | List of individual pages that link to multiple specified targets. Each entry represents a specific page URL shared across the targets. |
Under the Hood
Page-level intersection analysis for precise link prospecting.