Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

File metadata and controls

33 lines (24 loc) · 1.5 KB

SeoKeywordOverviewRequest

Properties

Name Type Description Notes
keywords List[str] Keywords to look up (1-700). Returns current metrics for each keyword.
location SeoKeywordOverviewLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
include_serp_info bool When true, include SERP data (result count and SERP feature types) for each keyword. Can add source cost. [optional]
view SeoKeywordView [optional]

Example

from unifapi.models.seo_keyword_overview_request import SeoKeywordOverviewRequest

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

# convert the object into a dict
seo_keyword_overview_request_dict = seo_keyword_overview_request_instance.to_dict()
# create an instance of SeoKeywordOverviewRequest from a dict
seo_keyword_overview_request_from_dict = SeoKeywordOverviewRequest.from_dict(seo_keyword_overview_request_dict)

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