Gap prospects

Returns the link prospects discovered by a completed backlink-gap run. The list is paginated and supports filtering by authority, spam score and competitor overlap so you can prioritise outreach. Reading prospects is free.

GET/backlinks/gap/{run_id}/prospects

Query parameters

ParameterTypeDescription
min_authorityintegerOnly return prospects with domain rating ≥ this value.
max_spamintegerOnly return prospects with spam score ≤ this value.
dofollowbooleanRestrict to dofollow link sources.
competitorstringOnly prospects linking to this specific competitor domain.
qstringFree-text domain search.
sortstringSort field: `score`, `rank`, `backlinks` or `referring_domains`. Defaults to `score`.
orderstring`asc` or `desc`. Defaults to `desc`.
pageintegerPage number. Defaults to `1`.
per_pageintegerItems per page (max 100). Defaults to `50`.

Example request

cURL
curl "https://api.oneclickseo.ai/v1/backlinks/gap/run_4d2a90/prospects?min_authority=40&dofollow=true" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

200Prospect list
Response
{
  "data": [
    {
      "domain": "marketingblog.com",
      "domain_rating": 72,
      "backlinks": 18400,
      "referring_domains": 940,
      "competitor_overlap": 2,
      "competitors": ["a.com", "b.com"],
      "dofollow": true,
      "spam_score": 3
    }
  ],
  "meta": { "page": 1, "per_page": 50, "total": 184, "total_pages": 4 }
}
Prospect fields
ParameterTypeDescription
domainstringThe prospect (referring) domain.
domain_ratingintegerAuthority of the prospect domain, 0-100.
backlinksintegerTotal backlinks the prospect domain has.
referring_domainsintegerUnique domains linking to the prospect.
competitor_overlapintegerHow many of your competitors this domain links to.
competitorsstring[]Which competitor domains it links to.
dofollowbooleanWhether the link to competitors is dofollow.
spam_scoreintegerSpam score, 0-100.