Skip to content

AS Overview

This endpoint shows general informations about an ASN like its announcement status and the name of its holder according to the WHOIS service.

GET /data/as-overview/data.json?resource=AS3333
Try it

Parameters

KeyValueInfoRequired
resourceasstates the as you want to get the resource info foryes

Data Output

KeyInfo
announced"true" if the ASN is originating any prefixes which are visible by at least 10 RIS full-feed peers (see http://ris.ripe.net).
Note that a transit-only ASN would be reported with "false".
We will revise this in a future version and change the field name.
holderDescriptive name of the ASN holder, when the ASN has been registered by an RIR. "null" otherwise
resourceOutputs the AS that query is based on
typeFor this endpoint always "as"
blockinformation about this ASN as found in the IANA registries. Keys:
resourceThe matching ASN or ASN block in IANA's records
descThe description of the resources as found in the IANA registry
namethe name of the relevant IANA registry
resourceholds the resource this query based on
query_starttime/query_endtimeThe time period the query covers

Code Examples

bash
curl --location --request GET "https://stat.ripe.net/data/as-overview/data.json?resource=3333"
js
const requestOptions = {
	method: 'GET',
};

fetch("https://stat.ripe.net/data/as-overview/data.json?resource=3333", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Available versions for this endpoint:

2.1
1.3 (current)