Skip to main content
POST
/
endpoint
Search endpoints
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,
  "operatingSystemCategories": [
    "Windows"
  ],
  "onlyLive": true,
  "onlyBillable": true,
  "integrationIds": [
    "<string>"
  ]
}
'
{
  "data": [
    {
      "id": "<string>",
      "displayName": "<string>",
      "teamId": "<string>",
      "hva": true,
      "createdAt": "<string>",
      "integrationId": {},
      "contained": true,
      "workstation": true,
      "server": true,
      "mobile": true,
      "domainController": true,
      "integrationPlatform": "<string>",
      "edrSourceId": "<string>",
      "mdmSourceId": "<string>",
      "name": "<string>",
      "hvaOverriddenByUser": true,
      "privateIpAddress": "<string>",
      "live": true,
      "operatingSystem": "<string>",
      "managed": true,
      "publicIpAddress": "<string>",
      "updatedAt": "<string>",
      "raw": {},
      "teamName": {}
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
size
number
page
number
filter
enum<string>

Field to filter Critical Asset automation by

Available options:
name,
ip,
os
orderBy
string
orderDir
enum<string>
Available options:
asc,
desc
hvaOnly
boolean

Only return Critical Assets

onlyContained
boolean

Only return currently contained endpoints

userId
string

Filter by specific user ID

showUnmanagedEndpoints
boolean

Include unmanaged endpoints in results

operatingSystemCategories
enum<string>[]

Filter by OS categories (supports multiple)

Available options:
Windows,
Windows Server,
macOS,
Linux,
iOS,
Android,
ChromeOS,
Network Device,
Other
onlyLive
boolean

Only return live/online endpoints

onlyBillable
boolean

Only return billable endpoints

integrationIds
string[]

Filter by integration IDs (supports multiple)

Response

Paginated list of endpoints matching search criteria

data
object[]
required

Array of endpoint search results

totalCount
number
required

Total number of endpoints matching the search criteria