You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
domain to get data for required field a domain should be specified without https:// and www. example: "forbes.com"
[optional]
date_from
str
starting date of the time range optional field this field indicates the date which will be used as a threshold for summary data; minimum value: 2019-01-30 maximum value shouldn’t exceed the date specified in the date_to date format: "yyyy-mm-dd" example: "2021-01-01"
[optional]
date_to
str
ending date of the time range optional field if you don’t specify this field, the today’s date will be used by default minimum value shouldn’t preceed the date specified in the date_from maximum value: today’s date date format: "yyyy-mm-dd" example: "2021-01-15"
[optional]
group_range
str
time range which will be used to group the results optional field default value: month possible values: day, week, month, year note: for day, we will return items corresponding to all dates between and including date_from and date_to; for week/month/year, we will return items corresponding to full weeks/months/years, where each item will indicate the last day of the week/month/year for example, if you specify: "group_range": "month", "date_from": "2022-03-23", "date_to": "2022-05-13" we will return items falling between 2022-03-01 and 2022-05-31, namely, three items corresponding to the following dates: 2022-03-31, 2022-04-30, 2022-05-31 if there is no data for a certain day/week/month/year, we will return 0
[optional]
include_subdomains
bool
indicates if the subdomains of the target will be included in the search optional field if set to false, the subdomains will be ignored default value: true
[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]
Example
fromdataforseo_client.models.backlinks_timeseries_summary_live_request_infoimportBacklinksTimeseriesSummaryLiveRequestInfo# TODO update the JSON string belowjson="{}"# create an instance of BacklinksTimeseriesSummaryLiveRequestInfo from a JSON stringbacklinks_timeseries_summary_live_request_info_instance=BacklinksTimeseriesSummaryLiveRequestInfo.from_json(json)
# print the JSON string representation of the objectprint(BacklinksTimeseriesSummaryLiveRequestInfo.to_json())
# convert the object into a dictbacklinks_timeseries_summary_live_request_info_dict=backlinks_timeseries_summary_live_request_info_instance.to_dict()
# create an instance of BacklinksTimeseriesSummaryLiveRequestInfo from a dictbacklinks_timeseries_summary_live_request_info_from_dict=BacklinksTimeseriesSummaryLiveRequestInfo.from_dict(backlinks_timeseries_summary_live_request_info_dict)