Filter the intersecting domains. Prefix each metric field with the 1-based target index, e.g. 1.rank, 2.referring_domains. Provide a single condition {"field","op","value"} or an {"and":[…]} / {"or":[…]} group of conditions (nest groups for mixed logic), up to 8 conditions. Operators: =, <>, <, <=, >, >=, in, not_in, like, not_like, ilike, not_ilike, match, not_match (use an array value with in / not_in). Filterable fields: rank (backlink rank, 0-1000); backlinks (number of backlinks); backlinks_spam_score (average spam score, 0-100); referring_domains (referring domains count); referring_main_domains (referring root domains count); referring_pages (referring pages count); referring_ips (referring IPs count); referring_subnets (referring subnets count); broken_backlinks (backlinks to broken pages); broken_pages (broken pages still receiving backlinks); first_seen (ISO date the first backlink was found); lost_date (ISO date the last backlink was lost). Example: {"and":[{"field":"1.rank","op":">","value":300},{"field":"2.rank","op":">","value":300}]}
| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | Field to filter on. See the endpoint's list of filterable fields. | |
| op | str | Comparison operator. | |
| value | DataForSeoFilterValue | ||
| var_and | List[DataForSeoFilter] | Sub-expressions that must all match. | |
| var_or | List[DataForSeoFilter] | Sub-expressions where at least one must match. |
from unifapi.models.seo_backlinks_domain_intersection_request_filters import SeoBacklinksDomainIntersectionRequestFilters
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBacklinksDomainIntersectionRequestFilters from a JSON string
seo_backlinks_domain_intersection_request_filters_instance = SeoBacklinksDomainIntersectionRequestFilters.from_json(json)
# print the JSON string representation of the object
print(SeoBacklinksDomainIntersectionRequestFilters.to_json())
# convert the object into a dict
seo_backlinks_domain_intersection_request_filters_dict = seo_backlinks_domain_intersection_request_filters_instance.to_dict()
# create an instance of SeoBacklinksDomainIntersectionRequestFilters from a dict
seo_backlinks_domain_intersection_request_filters_from_dict = SeoBacklinksDomainIntersectionRequestFilters.from_dict(seo_backlinks_domain_intersection_request_filters_dict)