| Name |
Type |
Description |
Notes |
| seed_keywords |
List[str] |
Seed keywords echoed from the request. |
|
| location |
str |
|
|
| language |
str |
|
|
| view |
SeoKeywordView |
|
|
| total_count |
int |
Total number of keyword ideas 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 ideas. |
[optional] |
| results |
List[SeoKeywordItem] |
Keyword ideas with search volume, competition, difficulty, and intent. Each keyword is one billable record. |
|
from unifapi.models.seo_keyword_ideas_response import SeoKeywordIdeasResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordIdeasResponse from a JSON string
seo_keyword_ideas_response_instance = SeoKeywordIdeasResponse.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordIdeasResponse.to_json())
# convert the object into a dict
seo_keyword_ideas_response_dict = seo_keyword_ideas_response_instance.to_dict()
# create an instance of SeoKeywordIdeasResponse from a dict
seo_keyword_ideas_response_from_dict = SeoKeywordIdeasResponse.from_dict(seo_keyword_ideas_response_dict)
[Back to Model list] [Back to API list] [Back to README]