Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.98 KB

File metadata and controls

15 lines (11 loc) · 1.98 KB

Unifapi.Sdk.Model.SeoBacklinksDomainPagesRequestFilters

Filter the returned target pages. 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: url (page URL on the target); status_code (last HTTP status code of the page); size (page size in bytes); media_type (media type, e.g. text/html); first_visited (ISO date first crawled); fetch_time (ISO date last crawled); 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":"referring_domains","op":">","value":5},{"field":"status_code","op":"=","value":200}]}

Properties

Name Type Description Notes
Field string Field to filter on. See the endpoint's list of filterable fields.
Op string Comparison operator.
Value DataForSeoFilterValue
And List<DataForSeoFilter> Sub-expressions that must all match.
Or List<DataForSeoFilter> Sub-expressions where at least one must match.

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