Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.24 KB

File metadata and controls

39 lines (30 loc) · 2.24 KB

SeoKeywordSuggestionsRequest

Properties

Name Type Description Notes
keyword str Seed keyword. Returns long-tail search queries that include this keyword.
location SeoKeywordSuggestionsLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
limit int Maximum number of keyword suggestions to return. Defaults to 100. [optional]
offset int Number of keyword suggestions 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]
exact_match bool When true, return only suggestions that contain the exact seed keyword in the same word order. [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]
include_seed_keyword bool When true, include metrics for the seed keyword in the response. [optional]
view SeoKeywordView [optional]

Example

from unifapi.models.seo_keyword_suggestions_request import SeoKeywordSuggestionsRequest

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

# convert the object into a dict
seo_keyword_suggestions_request_dict = seo_keyword_suggestions_request_instance.to_dict()
# create an instance of SeoKeywordSuggestionsRequest from a dict
seo_keyword_suggestions_request_from_dict = SeoKeywordSuggestionsRequest.from_dict(seo_keyword_suggestions_request_dict)

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