top_ases_prefixes
Creates, updates, deletes, gets or lists a top_ases_prefixes resource.
Overview
| Name | top_ases_prefixes |
| Type | Resource |
| Id | cloudflare.radar.top_ases_prefixes |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
asns | array | |
meta | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | country, limit, format | 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. |
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 |
|---|---|---|
country | string | Alpha-2 country code. |
format | string | Format in which results will be returned. |
limit | integer | Maximum number of ASes to return. |
SELECT examples
- list
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 }}'
;