| 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] |
from unifapi.models.seo_keyword_item import SeoKeywordItem
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordItem from a JSON string
seo_keyword_item_instance = SeoKeywordItem.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordItem.to_json())
# convert the object into a dict
seo_keyword_item_dict = seo_keyword_item_instance.to_dict()
# create an instance of SeoKeywordItem from a dict
seo_keyword_item_from_dict = SeoKeywordItem.from_dict(seo_keyword_item_dict)
[Back to Model list] [Back to API list] [Back to README]