Skip to main content

robots_txt_top_domain_categories

Creates, updates, deletes, gets or lists a robots_txt_top_domain_categories resource.

Overview

Namerobots_txt_top_domain_categories
TypeResource
Idcloudflare.radar.robots_txt_top_domain_categories

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
metaobjectMetadata for the results.
top_0array

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlimit, name, userAgentCategory, date, formatRetrieves the top domain categories by the number of robots.txt files parsed.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
datearrayFilters results by the specified array of dates.
formatstringFormat in which results will be returned.
limitintegerLimits the number of objects returned in the response.
namearrayArray of names used to label the series in the response.
userAgentCategorystringFilters results by user agent category.

SELECT examples

Retrieves the top domain categories by the number of robots.txt files parsed.

SELECT
meta,
top_0
FROM cloudflare.radar.robots_txt_top_domain_categories
WHERE limit = '{{ limit }}'
AND name = '{{ name }}'
AND userAgentCategory = '{{ userAgentCategory }}'
AND date = '{{ date }}'
AND format = '{{ format }}'
;