| Name |
Type |
Description |
Notes |
| keywords |
List[str] |
Keywords to look up (1-700). Returns historical metrics since 2019 for each. |
|
| location |
SeoKeywordHistoryLocation |
|
[optional] |
| language |
str |
Search language as an ISO code or full language name. Defaults to en. |
[optional] |
from unifapi.models.seo_keyword_history_request import SeoKeywordHistoryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordHistoryRequest from a JSON string
seo_keyword_history_request_instance = SeoKeywordHistoryRequest.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordHistoryRequest.to_json())
# convert the object into a dict
seo_keyword_history_request_dict = seo_keyword_history_request_instance.to_dict()
# create an instance of SeoKeywordHistoryRequest from a dict
seo_keyword_history_request_from_dict = SeoKeywordHistoryRequest.from_dict(seo_keyword_history_request_dict)
[Back to Model list] [Back to API list] [Back to README]