This data call returns blocklist related data for a queried resource.
https://stat.ripe.net/data/blocklist/data.<format>?<parameters>
e.g. https://stat.ripe.net/data/blocklist/data.json?resource=193/23
Key | Value | Info | Required |
---|---|---|---|
resource | prefix or IP range | States the prefix or IP range you want to get blocklist information for | YES |
starttime | ISO8601 or Unix timestamp | Defines the starttime for the query | YES |
endtime | ISO8601 or Unix timestamp | Defines the endtime for the query | NO - if not set it falls back to now |
Key | Info |
---|---|
source | Each different data source gets one entry, containing blocklist information for this source. |
prefix | Holds the prefix of the entry in the blocklist data source. |
details | If available this holds additional informations about the entry. |
timelines | Holds time information for the periods the entry appeared in the blocklist data source. |
query_starttime | Defines the starttime the query covers |
query_endtime | Defines the endtime the query covers |
resource | Defines the resource used for the query |
"data": { "query_endtime": "2012-03-28T10:00:00", "query_starttime": "2012-01-01T12:00:00", "resource": "127.0.0.0-127.255.255.255", "sources": { "uceprotect-level1": [ { "details": "Test Record. UCEPROTECT.NET LEVEL 1 List is active.", "prefix": "127.0.0.2/32", "timelines": [ { "endtime": "2012-03-01T08:10:00", "starttime": "2012-01-01T12:00:00" }, { "endtime": "2012-03-26T08:10:00", "starttime": "2012-03-04T08:10:00" } ] } ], "uceprotect-level2": [ { "details": "Test Record. UCEPROTECT.NET LEVEL 2 List is active", "prefix": "127.0.0.2/32", "timelines": [ { "endtime": "2012-03-26T08:10:00", "starttime": "2012-01-01T12:00:00" } ] } ], "uceprotect-level3": [ { "details": "Test Record. UCEPROTECT.NET LEVEL 3 List is active", "prefix": "127.0.0.2/32", "timelines": [ { "endtime": "2012-03-26T08:10:00", "starttime": "2012-01-01T12:00:00" } ] } ] } },