Skip to main content

top_ases_prefixes

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

Overview

Nametop_ases_prefixes
TypeResource
Idcloudflare.radar.top_ases_prefixes

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
asnsarray
metaobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectcountry, limit, formatRetrieves the full list of autonomous systems on the global routing table ordered by announced prefixes count. The data comes from public BGP MRT data archives and updates every 2 hours.

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
countrystringAlpha-2 country code.
formatstringFormat in which results will be returned.
limitintegerMaximum number of ASes to return.

SELECT examples

Retrieves the full list of autonomous systems on the global routing table ordered by announced prefixes count. The data comes from public BGP MRT data archives and updates every 2 hours.

SELECT
asns,
meta
FROM cloudflare.radar.top_ases_prefixes
WHERE country = '{{ country }}'
AND limit = '{{ limit }}'
AND format = '{{ format }}'
;