Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.58 KB

File metadata and controls

34 lines (25 loc) · 1.58 KB

SeoSerpCompetitorsRequest

Properties

Name Type Description Notes
keywords List[str] Seed keywords (1-200). Returns the domains that rank for them.
location SeoSerpCompetitorsLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
include_subdomains bool When true (default), count subdomain rankings toward each domain. [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]

Example

from unifapi.models.seo_serp_competitors_request import SeoSerpCompetitorsRequest

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

# convert the object into a dict
seo_serp_competitors_request_dict = seo_serp_competitors_request_instance.to_dict()
# create an instance of SeoSerpCompetitorsRequest from a dict
seo_serp_competitors_request_from_dict = SeoSerpCompetitorsRequest.from_dict(seo_serp_competitors_request_dict)

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