Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

File metadata and controls

35 lines (26 loc) · 1.58 KB

SeoRelatedKeywordsResponse

Properties

Name Type Description Notes
seed_keyword str Seed keyword echoed from the request.
location str
language str
view SeoKeywordView
total_count int Total number of related keywords available for the request in DataForSEO's database. [optional]
offset int Offset applied to the results. [optional]
results List[SeoRelatedKeywordItem] Related keywords with search volume, competition, difficulty, intent, and their own related searches. Each keyword is one billable record.

Example

from unifapi.models.seo_related_keywords_response import SeoRelatedKeywordsResponse

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

# convert the object into a dict
seo_related_keywords_response_dict = seo_related_keywords_response_instance.to_dict()
# create an instance of SeoRelatedKeywordsResponse from a dict
seo_related_keywords_response_from_dict = SeoRelatedKeywordsResponse.from_dict(seo_related_keywords_response_dict)

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