Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 4.07 KB

File metadata and controls

58 lines (49 loc) · 4.07 KB

SeoBacklinksDomainPageItem

Properties

Name Type Description Notes
url str Page URL on the target that receives backlinks.
domain str Domain that hosts the page. [optional]
ip str IP address the page is served from. [optional]
status_code int Last HTTP status code seen for the page. [optional]
first_visited str Date DataForSEO first crawled the page. [optional]
fetch_time str Date the page was last crawled. [optional]
size int Page size in bytes. [optional]
media_type str Media type of the page, e.g. text/html. [optional]
title str Title of the page, if available. [optional]
rank int Backlink rank of the target, similar to PageRank (0-1000 by default). [optional]
backlinks int Number of backlinks pointing to the target. [optional]
backlinks_spam_score int Average spam score of the referring pages, 0-100. [optional]
first_seen str Date DataForSEO first found a backlink for the target. [optional]
lost_date str Date the last backlink was lost, if the target currently has none. [optional]
broken_backlinks int Number of backlinks pointing to broken (4xx/5xx) pages of the target. [optional]
broken_pages int Number of broken target pages that still receive backlinks. [optional]
referring_domains int Number of referring domains pointing to the target. [optional]
referring_main_domains int Number of referring root domains pointing to the target. [optional]
referring_pages int Number of referring pages pointing to the target. [optional]
referring_ips int Number of referring IP addresses pointing to the target. [optional]
referring_subnets int Number of referring subnets pointing to the target. [optional]
referring_domains_nofollow int Referring domains linking only with nofollow backlinks (full view). [optional]
referring_main_domains_nofollow int Referring root domains linking only with nofollow backlinks (full view). [optional]
referring_pages_nofollow int Referring pages linking only with nofollow backlinks (full view). [optional]
referring_links_tld Dict[str, int] Referring links grouped by top-level domain of the referring page (full view). [optional]
referring_links_types Dict[str, int] Referring links grouped by link type, e.g. anchor, image, redirect (full view). [optional]
referring_links_attributes Dict[str, int] Referring links grouped by link attribute, e.g. nofollow, sponsored, ugc (full view). [optional]
referring_links_platform_types Dict[str, int] Referring links grouped by platform type, e.g. cms, blogs, ecommerce (full view). [optional]
referring_links_semantic_locations Dict[str, int] Referring links grouped by semantic location on the page, e.g. article, footer (full view). [optional]
referring_links_countries Dict[str, int] Referring links grouped by country of the referring page (full view). [optional]

Example

from unifapi.models.seo_backlinks_domain_page_item import SeoBacklinksDomainPageItem

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

# convert the object into a dict
seo_backlinks_domain_page_item_dict = seo_backlinks_domain_page_item_instance.to_dict()
# create an instance of SeoBacklinksDomainPageItem from a dict
seo_backlinks_domain_page_item_from_dict = SeoBacklinksDomainPageItem.from_dict(seo_backlinks_domain_page_item_dict)

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