YepAPI
Backlinks

Page Intersection

Find pages that link to multiple targets — granular link prospecting.

POST/v1/seo/backlinks/page-intersection
from $0.04/call

Usage

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

ParameterTypeRequiredDescriptionDefault
targetsstring[]YesDomains to find common backlinks for
excludeTargetsstring[]NoDomains to exclude
limitnumberNoMaximum number of intersections to return100

Response

{
  "ok": true,
  "data": {
    "intersections": []
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.intersectionsarrayList 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.

On this page