Get ASPA changes over time
GET/radar/bgp/rpki/aspa/changes
Retrieves ASPA (Autonomous System Provider Authorization) changes over time. Returns daily aggregated changes including additions, removals, and modifications of ASPA objects.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Query Parameters
Get ASPA changes over time
curl https://api.cloudflare.com/client/v4/radar/bgp/rpki/aspa/changes \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"result": {
"asnInfo": {
"13335": {
"asn": 0,
"country": "country",
"name": "name"
}
},
"changes": [
{
"customersAdded": 0,
"customersRemoved": 0,
"date": "2019-12-27T18:11:19.117Z",
"entries": [
{
"customerAsn": 0,
"providers": [
0
],
"type": "CustomerAdded"
}
],
"providersAdded": 0,
"providersRemoved": 0,
"totalCount": 0
}
],
"meta": {
"dataTime": "2019-12-27T18:11:19.117Z",
"queryTime": "2019-12-27T18:11:19.117Z"
}
},
"success": true
}Returns Examples
{
"result": {
"asnInfo": {
"13335": {
"asn": 0,
"country": "country",
"name": "name"
}
},
"changes": [
{
"customersAdded": 0,
"customersRemoved": 0,
"date": "2019-12-27T18:11:19.117Z",
"entries": [
{
"customerAsn": 0,
"providers": [
0
],
"type": "CustomerAdded"
}
],
"providersAdded": 0,
"providersRemoved": 0,
"totalCount": 0
}
],
"meta": {
"dataTime": "2019-12-27T18:11:19.117Z",
"queryTime": "2019-12-27T18:11:19.117Z"
}
},
"success": true
}