Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 3.29 KB

File metadata and controls

53 lines (44 loc) · 3.29 KB

SeoRankedKeywordItem

Properties

Name Type Description Notes
keyword str Keyword phrase.
search_volume int Average monthly Google search volume. [optional]
cpc float Average cost-per-click in USD. [optional]
competition float Google Ads competition index between 0 and 1. [optional]
competition_level str Google Ads competition level: LOW, MEDIUM, or HIGH. [optional]
keyword_difficulty int Relative difficulty of ranking in the top-10 organic results, 0-100. [optional]
search_intent str Main search intent: informational, navigational, commercial, or transactional. [optional]
search_intent_alternatives List[str] Supplementary search intents detected for the keyword. [optional]
low_top_of_page_bid float Lower-range top-of-page bid in USD from Google Ads. [optional]
high_top_of_page_bid float Upper-range top-of-page bid in USD from Google Ads. [optional]
words_count int Number of words in the keyword. [optional]
detected_language str Language detected for the keyword. [optional]
search_volume_trend SeoKeywordSearchVolumeTrend [optional]
serp_item_types List[str] SERP feature types present for the keyword (only with include_serp_info). [optional]
serp_results_count int Number of organic results Google reports for the keyword. [optional]
monthly_searches List[SeoKeywordMonthlySearch] Per-month search volume for the past 12 months (full view only). [optional]
last_updated_at str When DataForSEO last refreshed the keyword metrics. [optional]
rank_group int Position in SERP grouping organic results together (ignores ads/features). [optional]
rank_absolute int Absolute position in SERP counting every element. [optional]
position str Side of the SERP the element appears on: left or right. [optional]
domain str Domain that holds the ranking page. [optional]
title str Title of the ranking page. [optional]
url str URL of the ranking page. [optional]
etv float Estimated monthly traffic the keyword sends to this URL. [optional]
estimated_paid_traffic_cost float Estimated monthly ad cost (USD) of the traffic this URL receives. [optional]

Example

from unifapi.models.seo_ranked_keyword_item import SeoRankedKeywordItem

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

# convert the object into a dict
seo_ranked_keyword_item_dict = seo_ranked_keyword_item_instance.to_dict()
# create an instance of SeoRankedKeywordItem from a dict
seo_ranked_keyword_item_from_dict = SeoRankedKeywordItem.from_dict(seo_ranked_keyword_item_dict)

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