agent_readiness
Creates, updates, deletes, gets or lists an agent_readiness resource.
Overview
| Name | agent_readiness |
| Type | Resource |
| Id | cloudflare.radar.agent_readiness |
Fields
The following fields are returned by SELECT queries:
- get
Successful response.
| Name | Datatype | Description |
|---|---|---|
meta | object | |
summary_0 | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | dimension | date, domainCategory, name, format | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
dimension | string | Specifies the agent readiness data dimension by which to group the results. |
date | string (date) | Filters results by the specified date. |
domainCategory | array | Filters results by domain category. |
format | string | Format in which results will be returned. |
name | array | Array of names used to label the series in the response. |
SELECT examples
- get
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 }}'
;