Skip to main content

agent_readiness

Creates, updates, deletes, gets or lists an agent_readiness resource.

Overview

Nameagent_readiness
TypeResource
Idcloudflare.radar.agent_readiness

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
metaobject
summary_0object

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdimensiondate, domainCategory, name, formatReturns a summary of AI agent readiness scores across scanned domains, grouped by the specified dimension. Data is sourced from weekly bulk scans. All values are raw domain counts.

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
dimensionstringSpecifies the agent readiness data dimension by which to group the results.
datestring (date)Filters results by the specified date.
domainCategoryarrayFilters results by domain category.
formatstringFormat in which results will be returned.
namearrayArray of names used to label the series in the response.

SELECT examples

Returns a summary of AI agent readiness scores across scanned domains, grouped by the specified dimension. Data is sourced from weekly bulk scans. All values are raw domain counts.

SELECT
meta,
summary_0
FROM cloudflare.radar.agent_readiness
WHERE dimension = '{{ dimension }}' -- required
AND date = '{{ date }}'
AND domainCategory = '{{ domainCategory }}'
AND name = '{{ name }}'
AND format = '{{ format }}'
;