Skip to main content

radar_bots

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

Overview

Nameradar_bots
TypeResource
Idcloudflare.radar.radar_bots

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
namestringThe name of the bot.
categorystringThe category of the bot.
descriptionstringA summary for the bot (e.g., purpose).
kindstringThe kind of the bot.
operatorstringThe organization that owns and operates the bot.
slugstringA kebab-case identifier derived from the bot name.
userAgentPatternsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlimit, offset, botCategory, botOperator, kind, botVerificationStatus, formatRetrieves a list of bots.

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
botCategorystringFilters results by bot category.
botOperatorstringFilters results by bot operator.
botVerificationStatusstringFilters results by bot verification status.
formatstringFormat in which results will be returned.
kindstringFilters results by bot kind.
limitintegerLimits the number of objects returned in the response.
offsetintegerSkips the specified number of objects before fetching the results.

SELECT examples

Retrieves a list of bots.

SELECT
name,
category,
description,
kind,
operator,
slug,
userAgentPatterns
FROM cloudflare.radar.radar_bots
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
AND botCategory = '{{ botCategory }}'
AND botOperator = '{{ botOperator }}'
AND kind = '{{ kind }}'
AND botVerificationStatus = '{{ botVerificationStatus }}'
AND format = '{{ format }}'
;