Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 3.12 KB

File metadata and controls

42 lines (33 loc) · 3.12 KB

SeoBacklinksPageIntersectionRequest

Properties

Name Type Description Notes
targets List[str] Domains, subdomains, or pages to find common referring pages for (1-20). Order is preserved as the 1-based index in the response.
exclude_targets List[str] Domains, subdomains, or pages to exclude (up to 10). Pages linking to these are dropped. [optional]
intersection_mode str all (default) returns pages linking to any target; partial returns only pages linking to every target. [optional]
backlinks_status_type SeoBacklinksStatusType [optional]
include_subdomains bool Include backlinks pointing to the target's subdomains. Defaults to true. [optional]
include_indirect_links bool Include indirect links (via redirects or canonicals) to the target. Defaults to true. [optional]
exclude_internal_backlinks bool Exclude internal backlinks from the target's own subdomains. Defaults to true. [optional]
internal_list_limit int Maximum number of entries kept in each referring_links_* breakdown map. Defaults to 10. [optional]
rank_scale SeoBacklinksRankScale [optional]
filters SeoBacklinksPageIntersectionRequestFilters [optional]
order_by List[DataForSeoOrderByRule] Sort the intersecting referring pages. Prefix each field with the 1-based target index, e.g. 1.rank. Each rule is {"field","dir"} with dir asc or desc; up to 3 rules, applied in order. Sortable fields: dofollow, is_new, is_lost, is_broken, rank, page_from_rank, domain_from_rank, backlink_spam_score, item_type, anchor, tld_from, semantic_location, first_seen, last_seen. [optional]
limit int Maximum number of records to return. Defaults to 100. [optional]
offset int Number of records to skip from the start of the results. [optional]
view SeoBacklinksView [optional]

Example

from unifapi.models.seo_backlinks_page_intersection_request import SeoBacklinksPageIntersectionRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksPageIntersectionRequest from a JSON string
seo_backlinks_page_intersection_request_instance = SeoBacklinksPageIntersectionRequest.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksPageIntersectionRequest.to_json())

# convert the object into a dict
seo_backlinks_page_intersection_request_dict = seo_backlinks_page_intersection_request_instance.to_dict()
# create an instance of SeoBacklinksPageIntersectionRequest from a dict
seo_backlinks_page_intersection_request_from_dict = SeoBacklinksPageIntersectionRequest.from_dict(seo_backlinks_page_intersection_request_dict)

[Back to Model list] [Back to API list] [Back to README]