Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.85 KB

File metadata and controls

47 lines (38 loc) · 2.85 KB

SeoDomainIntersectionItem

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]
first_domain SeoSerpElement [optional]
second_domain SeoDomainIntersectionItemSecondDomain [optional]

Example

from unifapi.models.seo_domain_intersection_item import SeoDomainIntersectionItem

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

# convert the object into a dict
seo_domain_intersection_item_dict = seo_domain_intersection_item_instance.to_dict()
# create an instance of SeoDomainIntersectionItem from a dict
seo_domain_intersection_item_from_dict = SeoDomainIntersectionItem.from_dict(seo_domain_intersection_item_dict)

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