Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.84 KB

File metadata and controls

36 lines (27 loc) · 1.84 KB

SeoCompetitorsDomainRequest

Properties

Name Type Description Notes
target str Target domain, such as example.com or https://example.com. Specified without www.
location SeoCompetitorsDomainLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
exclude_top_domains bool When true, exclude the largest global domains (e.g. wikipedia, amazon) from results. [optional]
intersecting_domains List[str] Restrict results to competitors that also share keywords with these domains. [optional]
limit int Maximum number of competing domains to return. Defaults to 100. [optional]
offset int Number of domains to skip from the start of the results. [optional]
view SeoDomainMetricsView [optional]

Example

from unifapi.models.seo_competitors_domain_request import SeoCompetitorsDomainRequest

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

# convert the object into a dict
seo_competitors_domain_request_dict = seo_competitors_domain_request_instance.to_dict()
# create an instance of SeoCompetitorsDomainRequest from a dict
seo_competitors_domain_request_from_dict = SeoCompetitorsDomainRequest.from_dict(seo_competitors_domain_request_dict)

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