Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 4.36 KB

File metadata and controls

66 lines (57 loc) · 4.36 KB

SeoBacklinkItem

Properties

Name Type Description Notes
domain_from str Domain of the page that links to the target. [optional]
url_from str URL of the page that links to the target. [optional]
url_to str Target URL the backlink points to. [optional]
domain_to str Target domain the backlink points to. [optional]
anchor str Anchor text of the backlink. [optional]
dofollow bool Whether the backlink is dofollow. [optional]
item_type str Type of backlink: anchor, image, link, redirect, or canonical. [optional]
rank int Backlink rank of the referring page (0-1000). [optional]
page_from_rank int Rank of the referring page itself (0-1000). [optional]
domain_from_rank int Rank of the referring domain (0-1000). [optional]
backlink_spam_score int Spam score of the referring page, 0-100. [optional]
is_new bool Whether the backlink appeared since the last check. [optional]
is_lost bool Whether the backlink was lost since the last check. [optional]
is_broken bool Whether the backlink points to a broken page. [optional]
first_seen str Date the backlink was first found. [optional]
last_seen str Date the backlink was last seen. [optional]
prev_seen str Previous date the backlink was seen before the last check (full view). [optional]
tld_from str Top-level domain of the referring page (full view). [optional]
url_from_https bool Whether the referring page uses HTTPS (full view). [optional]
url_to_https bool Whether the target URL uses HTTPS (full view). [optional]
alt str Alt text, if the backlink is an image link (full view). [optional]
image_url str Image URL, if the backlink is an image link (full view). [optional]
text_pre str Text immediately before the anchor (full view). [optional]
text_post str Text immediately after the anchor (full view). [optional]
semantic_location str Semantic location of the link on the page, e.g. article, footer (full view). [optional]
attributes List[str] Link rel attributes, e.g. nofollow, sponsored, ugc (full view). [optional]
links_count int Number of identical links from the referring page (full view). [optional]
group_count int Number of similar grouped links from the referring domain (full view). [optional]
page_from_title str Title of the referring page (full view). [optional]
page_from_language str Language of the referring page (full view). [optional]
page_from_status_code int HTTP status code of the referring page (full view). [optional]
page_from_external_links int Number of external links on the referring page (full view). [optional]
page_from_internal_links int Number of internal links on the referring page (full view). [optional]
domain_from_country str Country of the referring domain (full view). [optional]
domain_from_platform_type List[str] Platform types of the referring domain, e.g. cms, blogs (full view). [optional]
url_to_status_code int HTTP status code of the target URL (full view). [optional]
url_to_redirect_target str Redirect target of the backlink URL, if any (full view). [optional]
is_indirect_link bool Whether the link reaches the target via a redirect or canonical (full view). [optional]

Example

from unifapi.models.seo_backlink_item import SeoBacklinkItem

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

# convert the object into a dict
seo_backlink_item_dict = seo_backlink_item_instance.to_dict()
# create an instance of SeoBacklinkItem from a dict
seo_backlink_item_from_dict = SeoBacklinkItem.from_dict(seo_backlink_item_dict)

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