Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

File metadata and controls

33 lines (24 loc) · 1.41 KB

SeoSerpCompetitorsResponse

Properties

Name Type Description Notes
keywords List[str] Seed keywords echoed from the request.
location str
language str
total_count int Total number of competing domains available in DataForSEO's database. [optional]
results List[SeoSerpCompetitorItem] Domains competing for the seed keywords, ranked by visibility. Each domain is one billable record.

Example

from unifapi.models.seo_serp_competitors_response import SeoSerpCompetitorsResponse

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

# convert the object into a dict
seo_serp_competitors_response_dict = seo_serp_competitors_response_instance.to_dict()
# create an instance of SeoSerpCompetitorsResponse from a dict
seo_serp_competitors_response_from_dict = SeoSerpCompetitorsResponse.from_dict(seo_serp_competitors_response_dict)

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