Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 2.85 KB

File metadata and controls

46 lines (40 loc) · 2.85 KB

Unifapi::SeoBacklinksDomainIntersectionRequest

Properties

Name Type Description Notes
targets Array<String> Domains, subdomains, or pages to find common referring domains for (1-20). Order is preserved as the 1-based index in the response.
exclude_targets Array<String> Domains, subdomains, or pages to exclude (up to 10). Domains linking to these are dropped. [optional]
intersection_mode String all (default) returns domains linking to any target; partial returns only domains linking to every target. [optional]
backlinks_status_type SeoBacklinksStatusType [optional]
include_subdomains Boolean Include backlinks pointing to the target's subdomains. Defaults to true. [optional]
include_indirect_links Boolean Include indirect links (via redirects or canonicals) to the target. Defaults to true. [optional]
exclude_internal_backlinks Boolean Exclude internal backlinks from the target's own subdomains. Defaults to true. [optional]
internal_list_limit Integer Maximum number of entries kept in each referring_links_* breakdown map. Defaults to 10. [optional]
rank_scale SeoBacklinksRankScale [optional]
filters SeoBacklinksDomainIntersectionRequestFilters [optional]
backlinks_filters SeoBacklinksAnchorsRequestBacklinksFilters [optional]
order_by Array<DataForSeoOrderByRule> Sort the intersecting domains. Prefix each field with the 1-based target index, e.g. 1.rank. Each rule is {&quot;field&quot;,&quot;dir&quot;} with dir asc or desc; up to 3 rules, applied in order. Sortable fields: rank, backlinks, backlinks_spam_score, referring_domains, referring_main_domains, referring_pages, referring_ips, referring_subnets, broken_backlinks, broken_pages, first_seen, lost_date. [optional]
limit Integer Maximum number of records to return. Defaults to 100. [optional]
offset Integer Number of records to skip from the start of the results. [optional]
view SeoBacklinksView [optional]

Example

require 'unifapi'

instance = Unifapi::SeoBacklinksDomainIntersectionRequest.new(
  targets: null,
  exclude_targets: null,
  intersection_mode: null,
  backlinks_status_type: null,
  include_subdomains: null,
  include_indirect_links: null,
  exclude_internal_backlinks: null,
  internal_list_limit: null,
  rank_scale: null,
  filters: null,
  backlinks_filters: null,
  order_by: null,
  limit: null,
  offset: null,
  view: null
)