Skip to main content

routes_realtime

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

Overview

Nameroutes_realtime
TypeResource
Idcloudflare.radar.routes_realtime

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
metaobject
routesarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprefix, formatRetrieves 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.

NameDatatypeDescription
formatstringFormat in which results will be returned.
prefixstring

SELECT examples

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 }}'
;