routes_realtime
Creates, updates, deletes, gets or lists a routes_realtime resource.
Overview
| Name | routes_realtime |
| Type | Resource |
| Id | cloudflare.radar.routes_realtime |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
meta | object | |
routes | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | prefix, format | Retrieves real-time BGP routes for a prefix, using public real-time data collectors (RouteViews and RIPE RIS). |
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 |
|---|---|---|
format | string | Format in which results will be returned. |
prefix | string |
SELECT examples
- list
Retrieves real-time BGP routes for a prefix, using public real-time data collectors (RouteViews and RIPE RIS).
SELECT
meta,
routes
FROM cloudflare.radar.routes_realtime
WHERE prefix = '{{ prefix }}'
AND format = '{{ format }}'
;