Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.08 KB

File metadata and controls

38 lines (29 loc) · 2.08 KB

SeoKeywordIdeasRequest

Properties

Name Type Description Notes
keywords List[str] Seed keywords (1-200). Returns search terms relevant to the product or service categories of these keywords.
location SeoKeywordIdeasLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
limit int Maximum number of keyword ideas to return. Defaults to 100. [optional]
offset int Number of keyword ideas to skip from the start of the results. [optional]
offset_token str Pagination token from a previous response. When set, all other params except limit are ignored. [optional]
closely_variants bool When true, use phrase-match search; when false (default), use broad-match search for wider ideas. [optional]
ignore_synonyms bool When true, exclude highly similar keywords and return only core keywords. [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_ideas_request import SeoKeywordIdeasRequest

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

# convert the object into a dict
seo_keyword_ideas_request_dict = seo_keyword_ideas_request_instance.to_dict()
# create an instance of SeoKeywordIdeasRequest from a dict
seo_keyword_ideas_request_from_dict = SeoKeywordIdeasRequest.from_dict(seo_keyword_ideas_request_dict)

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