curl --request GET \
--url https://api.wirespeed.com/endpoint/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"displayName": "<string>",
"teamId": "<string>",
"edrSourceId": "<string>",
"mdmSourceId": "<string>",
"name": "<string>",
"hva": true,
"hvaOverriddenByUser": true,
"createdAt": "<string>",
"privateIpAddress": "<string>",
"live": true,
"operatingSystem": "<string>",
"integrationId": {},
"contained": true,
"managed": true,
"publicIPs": [
{
"ipv4": "<string>",
"ipv6": "<string>",
"metadata": {
"ip": "<string>",
"hostname": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"loc": "<string>",
"postal": "<string>",
"timezone": "<string>",
"org": "<string>",
"asn": {
"asn": "<string>",
"name": "<string>",
"domain": "<string>",
"route": "<string>",
"type": "<string>"
},
"company": {
"name": "<string>",
"domain": "<string>",
"type": "<string>"
},
"privacy": {
"vpn": true,
"proxy": true,
"tor": true,
"relay": true,
"hosting": true,
"service": "<string>"
},
"abuse": {
"address": "<string>",
"country": "<string>",
"email": "<string>",
"name": "<string>",
"network": "<string>",
"phone": "<string>",
"ofac": true,
"adversarial": true
},
"domains": {
"ip": "<string>",
"total": 123,
"domains": [
"<string>"
]
},
"ofac": true,
"adversarial": true
},
"displayName": "<string>",
"id": "<string>",
"teamId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"locationId": "<string>",
"metadataLastFetchedAt": "<string>",
"known": true,
"safe": true,
"detectionSid": "<string>"
}
],
"workstation": true,
"server": true,
"mobile": true,
"updatedAt": "<string>",
"raw": {}
}
Retrieves detailed information about a specific endpoint including its public IPs and integration data
curl --request GET \
--url https://api.wirespeed.com/endpoint/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"displayName": "<string>",
"teamId": "<string>",
"edrSourceId": "<string>",
"mdmSourceId": "<string>",
"name": "<string>",
"hva": true,
"hvaOverriddenByUser": true,
"createdAt": "<string>",
"privateIpAddress": "<string>",
"live": true,
"operatingSystem": "<string>",
"integrationId": {},
"contained": true,
"managed": true,
"publicIPs": [
{
"ipv4": "<string>",
"ipv6": "<string>",
"metadata": {
"ip": "<string>",
"hostname": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"loc": "<string>",
"postal": "<string>",
"timezone": "<string>",
"org": "<string>",
"asn": {
"asn": "<string>",
"name": "<string>",
"domain": "<string>",
"route": "<string>",
"type": "<string>"
},
"company": {
"name": "<string>",
"domain": "<string>",
"type": "<string>"
},
"privacy": {
"vpn": true,
"proxy": true,
"tor": true,
"relay": true,
"hosting": true,
"service": "<string>"
},
"abuse": {
"address": "<string>",
"country": "<string>",
"email": "<string>",
"name": "<string>",
"network": "<string>",
"phone": "<string>",
"ofac": true,
"adversarial": true
},
"domains": {
"ip": "<string>",
"total": 123,
"domains": [
"<string>"
]
},
"ofac": true,
"adversarial": true
},
"displayName": "<string>",
"id": "<string>",
"teamId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"locationId": "<string>",
"metadataLastFetchedAt": "<string>",
"known": true,
"safe": true,
"detectionSid": "<string>"
}
],
"workstation": true,
"server": true,
"mobile": true,
"updatedAt": "<string>",
"raw": {}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier of the endpoint (UUID)
The response is of type object
.