Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.66 KB

File metadata and controls

36 lines (27 loc) · 1.66 KB

SeoKeywordsForSiteResponse

Properties

Name Type Description Notes
target str Target domain echoed from the request.
location str
language str
view SeoKeywordView
total_count int Total number of keywords available for the target 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 keywords. [optional]
results List[SeoKeywordItem] Keywords the domain is relevant for, with search volume, competition, difficulty, and intent. Each keyword is one billable record.

Example

from unifapi.models.seo_keywords_for_site_response import SeoKeywordsForSiteResponse

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

# convert the object into a dict
seo_keywords_for_site_response_dict = seo_keywords_for_site_response_instance.to_dict()
# create an instance of SeoKeywordsForSiteResponse from a dict
seo_keywords_for_site_response_from_dict = SeoKeywordsForSiteResponse.from_dict(seo_keywords_for_site_response_dict)

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