# Atlas Targets


This data call provides information on the RIPE Atlas measurements that target an network (ASN), a prefix or a hostname.
The information is based on data coming from the RIPE Atlas REST API, https://atlas.ripe.net/docs/api/v2/manual/.

GET /data/atlas-targets/data.json?resource=140.78/16

# Parameters

Key Value Info Required
resource prefix, network (ASN) or hostname Yes

# Data Output

Key Info
measurements list with meta data for each measurement. For details see https://atlas.ripe.net/docs/apis/result-format/#measurement-result-format
stats
totalTotal number of measurements found
resource the resource the query is based on

# Code Examples

Copy

curl --location --request GET "https://stat.ripe.net/data/atlas-targets/data.json?resource=140.78/16"


Copy

var requestOptions = {
	method: "GET",
};

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


# Available versions for this data call:

deprecated - n.a. deprected details
upcoming - n.a. upcoming details
Last Updated: Friday 9 September 2022