curl --request POST \
--url https://api.wirespeed.co/endpoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"size": 123,
"page": 123,
"filter": "name",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc",
"hvaOnly": true,
"onlyContained": true,
"userId": "<string>",
"showUnmanagedEndpoints": true
}
'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"teamId": "<string>",
"hva": true,
"createdAt": "<string>",
"integrationId": {},
"contained": true,
"workstation": true,
"server": true,
"mobile": true,
"integrationPlatform": "<string>",
"edrSourceId": "<string>",
"mdmSourceId": "<string>",
"name": "<string>",
"hvaOverriddenByUser": true,
"privateIpAddress": "<string>",
"live": true,
"operatingSystem": "<string>",
"managed": true,
"publicIpAddress": "<string>",
"updatedAt": "<string>",
"raw": {}
}
],
"totalCount": 123
}Search and filter endpoints with pagination support. Can filter by HVA status, IP, user, and managed status
curl --request POST \
--url https://api.wirespeed.co/endpoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"size": 123,
"page": 123,
"filter": "name",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc",
"hvaOnly": true,
"onlyContained": true,
"userId": "<string>",
"showUnmanagedEndpoints": true
}
'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"teamId": "<string>",
"hva": true,
"createdAt": "<string>",
"integrationId": {},
"contained": true,
"workstation": true,
"server": true,
"mobile": true,
"integrationPlatform": "<string>",
"edrSourceId": "<string>",
"mdmSourceId": "<string>",
"name": "<string>",
"hvaOverriddenByUser": true,
"privateIpAddress": "<string>",
"live": true,
"operatingSystem": "<string>",
"managed": true,
"publicIpAddress": "<string>",
"updatedAt": "<string>",
"raw": {}
}
],
"totalCount": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Field to filter HVA automation by
name, ip asc, desc Only return High Value Assets
Only return currently contained endpoints
Filter by specific user ID
Include unmanaged endpoints in results