Lists indicators across multiple datasets
Retrieves indicators across specified datasets, ordered by createdAt descending then UUID, dataset ID, and shard ID ascending. Use datasetIds=all or datasetIds=* to query all datasets for the account. If no datasetIds provided, uses the default dataset.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Accepted Permissions (at least one required)
Query Parameters
Cache strategy. ‘from-graph’ serves results from the graph-node KV cache when all requested UUIDs are cached; falls back to normal path on partial/zero hit.
Filter indicators created on or after this date. Must use ISO 8601 format (e.g., ‘2024-01-15T00:00:00Z’).
Filter indicators created on or before this date. Must use ISO 8601 format (e.g., ‘2024-12-31T23:59:59Z’).
Dataset IDs to query indicators from (array of UUIDs), or special value ‘all’ or ’*’ to query all datasets. If not provided, uses the default dataset.
Whether to include full tag details for each indicator. Defaults to true.
Whether to compute total count via COUNT(*). Defaults to false for performance. total_count is null unless this is true and the complete fan-out succeeds.
Lists indicators across multiple datasets
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/cloudforce-one/events/indicators \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"properties": {
"completeness": {
"properties": {
"complete": {
"type": "boolean"
},
"failedDatasets": {
"items": {
"type": "string"
},
"type": "array"
},
"failedShards": {
"items": {
"properties": {
"datasetId": {
"type": "string"
},
"shardId": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"indicators": {
"items": {
"createdAt": "2022-04-01T00:00:00Z",
"indicatorType": "domain",
"updatedAt": "2022-04-01T00:00:00Z",
"uuid": "12345678-1234-1234-1234-1234567890ab",
"value": "malicious-domain.com",
"datasetId": "dataset-uuid-123",
"relatedEvents": [
{
"datasetId": "dataset-uuid-123",
"eventId": "event-uuid-456",
"eventDate": "2024-06-15T00:00:00Z"
}
],
"tags": [
{
"categoryName": "categoryName",
"uuid": "uuid",
"value": "value"
}
]
},
"type": "array"
},
"pagination": {
"properties": {
"count": {
"type": "number"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"total_count": {
"description": "Exact matching count when requested and fan-out is complete; otherwise null.",
"nullable": true,
"type": "number"
},
"total_count_is_exact": {
"description": "Whether total_count is exact across the complete query fan-out.",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}Returns Examples
{
"properties": {
"completeness": {
"properties": {
"complete": {
"type": "boolean"
},
"failedDatasets": {
"items": {
"type": "string"
},
"type": "array"
},
"failedShards": {
"items": {
"properties": {
"datasetId": {
"type": "string"
},
"shardId": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"indicators": {
"items": {
"createdAt": "2022-04-01T00:00:00Z",
"indicatorType": "domain",
"updatedAt": "2022-04-01T00:00:00Z",
"uuid": "12345678-1234-1234-1234-1234567890ab",
"value": "malicious-domain.com",
"datasetId": "dataset-uuid-123",
"relatedEvents": [
{
"datasetId": "dataset-uuid-123",
"eventId": "event-uuid-456",
"eventDate": "2024-06-15T00:00:00Z"
}
],
"tags": [
{
"categoryName": "categoryName",
"uuid": "uuid",
"value": "value"
}
]
},
"type": "array"
},
"pagination": {
"properties": {
"count": {
"type": "number"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"total_count": {
"description": "Exact matching count when requested and fan-out is complete; otherwise null.",
"nullable": true,
"type": "number"
},
"total_count_is_exact": {
"description": "Whether total_count is exact across the complete query fan-out.",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}