You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Position in SERP grouping organic results together (ignores ads/features).
[optional]
rank_absolute
int
Absolute position in SERP counting every element.
[optional]
position
str
Side of the SERP the element appears on: left or right.
[optional]
domain
str
Domain that holds the ranking page.
[optional]
title
str
Title of the ranking page.
[optional]
url
str
URL of the ranking page.
[optional]
etv
float
Estimated monthly traffic the keyword sends to this URL.
[optional]
estimated_paid_traffic_cost
float
Estimated monthly ad cost (USD) of the traffic this URL receives.
[optional]
Example
fromunifapi.models.seo_domain_intersection_item_second_domainimportSeoDomainIntersectionItemSecondDomain# TODO update the JSON string belowjson="{}"# create an instance of SeoDomainIntersectionItemSecondDomain from a JSON stringseo_domain_intersection_item_second_domain_instance=SeoDomainIntersectionItemSecondDomain.from_json(json)
# print the JSON string representation of the objectprint(SeoDomainIntersectionItemSecondDomain.to_json())
# convert the object into a dictseo_domain_intersection_item_second_domain_dict=seo_domain_intersection_item_second_domain_instance.to_dict()
# create an instance of SeoDomainIntersectionItemSecondDomain from a dictseo_domain_intersection_item_second_domain_from_dict=SeoDomainIntersectionItemSecondDomain.from_dict(seo_domain_intersection_item_second_domain_dict)