Overview

The Assets endpoint returns all scanned assets in your Lupasafe account — including domains and network devices — along with their IP addresses, OS type, EPSS risk score, importance rating, and tags.

Base URL: https://portal.lupasafe.com
Authentication: X-Api-Key: ls_your_api_key_here

Endpoint

EndpointDescription
GET /reporting/v1/assetsAll scanned assets — domains and network devices with IP, OS type, EPSS score, importance, tags

Parameters

  • limit — default 50, max 500
  • offset — for pagination

Response Fields

FieldDescription
asset_idUnique identifier for the asset
nameDomain name or device identifier
ip_v4IPv4 address
ip_v6IPv6 address
osScanner type: DomainScanner or NetworkScanner
epssExploit Prediction Scoring System score (0–100, probability of exploit within 30 days)
importancePriority level (1–5)
tagsLocation and type tags assigned to the asset
last_seen_onTimestamp of the last scan

Example Request

GET /reporting/v1/assets?limit=10
X-Api-Key: ls_your_api_key_here

Notes

  • The epss score represents the probability that a vulnerability on this asset will be exploited within the next 30 days. Higher scores indicate higher risk.
  • The importance field (1–5) allows you to prioritise remediation — 5 being the highest priority.
  • Assets are discovered by Lupasafe's DomainScanner (for web domains) and NetworkScanner (for internal network devices).
  • Use tags to group assets by location, business unit, or environment (e.g., location:Amsterdam, type:server).
  • MSP keys return assets across all client accounts; client keys return only that client's assets.