Skip to main content

ip_lists

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

Overview

Nameip_lists
TypeResource
Idcloudflare.intel.ip_lists

Fields

The following fields are returned by SELECT queries:

Get Available IP Lists response.

NameDatatypeDescription
idinteger
namestring (example: Malware)
descriptionstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idReturns a list of available IP list categories (e.g., anonymizer, botnetcc, malware, tor, vpn, open_proxies). This endpoint provides metadata about which IP lists are available in the system.

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
account_idstringThe Cloudflare account ID.

SELECT examples

Returns a list of available IP list categories (e.g., anonymizer, botnetcc, malware, tor, vpn, open_proxies). This endpoint provides metadata about which IP lists are available in the system.

SELECT
id,
name,
description
FROM cloudflare.intel.ip_lists
WHERE account_id = '{{ account_id }}' -- required
;