Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.68 KB

File metadata and controls

36 lines (27 loc) · 1.68 KB

SeoKeywordSuggestionsResponse

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 suggestions available for the request in DataForSEO's database. [optional]
offset int Offset applied to the results. [optional]
offset_token str Pass this token as offset_token to fetch the next page of suggestions. [optional]
results List[SeoKeywordItem] Keyword suggestions with search volume, competition, difficulty, and intent. Each keyword is one billable record.

Example

from unifapi.models.seo_keyword_suggestions_response import SeoKeywordSuggestionsResponse

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

# convert the object into a dict
seo_keyword_suggestions_response_dict = seo_keyword_suggestions_response_instance.to_dict()
# create an instance of SeoKeywordSuggestionsResponse from a dict
seo_keyword_suggestions_response_from_dict = SeoKeywordSuggestionsResponse.from_dict(seo_keyword_suggestions_response_dict)

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