Name | Type | Description | Notes |
---|---|---|---|
category_code | str | target category code required field to obtain a full list of available categories, refer to the Categories endpoint | [optional] |
page_type | List[str] | target page types optional field use this parameter to filter the dataset by page types possible values: "ecommerce", "news", "blogs", "message-boards", "organization" | [optional] |
search_mode | str | results grouping type optional field possible grouping types: as_is – returns data on all citations for the target category_code one_per_domain – returns data on one citation of the category_code per domain default value: as_is | [optional] |
internal_list_limit | int | maximum number of elements within internal arrays optional field you can use this field to limit the number of elements within the following arrays: top_domains text_categories page_categories countries languages default value: 1 maximum value: 20 | [optional] |
date_from | str | starting date of the time range required field date format: "yyyy-mm-dd" example: "2019-01-15" | [optional] |
date_to | str | ending date of the time range optional field if you don’t specify this field, today’s date will be used by default date format: "yyyy-mm-dd" example: "2019-01-15" | [optional] |
date_group | str | time range which will be used to group the results optional field default value: month possible values: day, week, month | [optional] |
initial_dataset_filters | List[Optional[object]] | initial dataset filtering parameters optional field you can add several filters at once (8 filters maximum) you should set a logical operator and, or between the conditions the following operators are supported: regex, not_regex, <, <=, >, >=, =, <>, in, not_in, like,not_like, has, has_not, match, not_match you can use the % operator with like and not_like to match any string of zero or more characters example: ["domain","<>", "logitech.com"] [["domain","<>","logitech.com"],"and",["content_info.connotation_types.negative",">",1000]] [["domain","<>","logitech.com"]], "and", [["content_info.connotation_types.negative",">",1000], "or", ["content_info.text_category","has",10994]]] for more information about filters, please refer to Content Analysis API – Filters | [optional] |
tag | str | user-defined task identifier optional field the character limit is 255 you can use this parameter to identify the task and match it with the result you will find the specified tag value in the data object of the response | [optional] |
from dataforseo_client.models.content_analysis_category_trends_live_request_info import ContentAnalysisCategoryTrendsLiveRequestInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ContentAnalysisCategoryTrendsLiveRequestInfo from a JSON string
content_analysis_category_trends_live_request_info_instance = ContentAnalysisCategoryTrendsLiveRequestInfo.from_json(json)
# print the JSON string representation of the object
print(ContentAnalysisCategoryTrendsLiveRequestInfo.to_json())
# convert the object into a dict
content_analysis_category_trends_live_request_info_dict = content_analysis_category_trends_live_request_info_instance.to_dict()
# create an instance of ContentAnalysisCategoryTrendsLiveRequestInfo from a dict
content_analysis_category_trends_live_request_info_from_dict = ContentAnalysisCategoryTrendsLiveRequestInfo.from_dict(content_analysis_category_trends_live_request_info_dict)