Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.72 KB

File metadata and controls

36 lines (27 loc) · 1.72 KB

SeoSerpCompetitorItem

Properties

Name Type Description Notes
domain str Competing domain ranking for the seed keywords.
avg_position float Average position of the domain across the seed keywords. [optional]
median_position float Median position of the domain across the seed keywords. [optional]
rating float Relative visibility score weighing positions and search volume. [optional]
etv float Estimated monthly organic traffic the domain gets from the seed keywords. [optional]
keywords_count int Number of seed keywords the domain ranks for. [optional]
visibility float Share of the seed keywords' total traffic captured by the domain. [optional]
relevant_serp_items int Number of SERP elements the domain owns across the seed keywords. [optional]

Example

from unifapi.models.seo_serp_competitor_item import SeoSerpCompetitorItem

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

# convert the object into a dict
seo_serp_competitor_item_dict = seo_serp_competitor_item_instance.to_dict()
# create an instance of SeoSerpCompetitorItem from a dict
seo_serp_competitor_item_from_dict = SeoSerpCompetitorItem.from_dict(seo_serp_competitor_item_dict)

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