Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.51 KB

File metadata and controls

34 lines (25 loc) · 1.51 KB

SeoCompetitorsDomainResponse

Properties

Name Type Description Notes
target str Target domain echoed from the request.
location str
language str
view SeoDomainMetricsView
total_count int Total number of competing domains available in DataForSEO's database. [optional]
results List[SeoCompetitorDomainItem] Domains competing with the target, with shared-keyword counts and traffic metrics. Each domain is one billable record.

Example

from unifapi.models.seo_competitors_domain_response import SeoCompetitorsDomainResponse

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

# convert the object into a dict
seo_competitors_domain_response_dict = seo_competitors_domain_response_instance.to_dict()
# create an instance of SeoCompetitorsDomainResponse from a dict
seo_competitors_domain_response_from_dict = SeoCompetitorsDomainResponse.from_dict(seo_competitors_domain_response_dict)

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