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, subdomain, or page to analyze. A domain or subdomain is specified without https:// and www. (example.com); a page is specified as an absolute URL (https://example.com/blog/).
date_from
str
Start date (yyyy-mm-dd) for the series. Minimum 2019-01-30; defaults to one month ago.
[optional]
date_to
str
End date (yyyy-mm-dd). Defaults to today.
[optional]
group_range
str
Granularity used to group the series. Defaults to month.
[optional]
include_subdomains
bool
Include backlinks pointing to the target's subdomains. Defaults to true.
[optional]
Example
fromunifapi.models.seo_backlinks_timeseries_new_lost_requestimportSeoBacklinksTimeseriesNewLostRequest# TODO update the JSON string belowjson="{}"# create an instance of SeoBacklinksTimeseriesNewLostRequest from a JSON stringseo_backlinks_timeseries_new_lost_request_instance=SeoBacklinksTimeseriesNewLostRequest.from_json(json)
# print the JSON string representation of the objectprint(SeoBacklinksTimeseriesNewLostRequest.to_json())
# convert the object into a dictseo_backlinks_timeseries_new_lost_request_dict=seo_backlinks_timeseries_new_lost_request_instance.to_dict()
# create an instance of SeoBacklinksTimeseriesNewLostRequest from a dictseo_backlinks_timeseries_new_lost_request_from_dict=SeoBacklinksTimeseriesNewLostRequest.from_dict(seo_backlinks_timeseries_new_lost_request_dict)