v1

latestOpenAPI 3.0.0Proprietary2026-07-244990150.4 KB
Business Service Intelligence

BSI Trust-Level Stats

Returns counts of BSI IPs and CIDRs grouped by trust level. Use date=now for current information or date=YYYY-MM-DD for historical information.

This endpoint requires the proper BSI entitlements.

get/v3/bsi/trust

Query parameters

datestring
Example:2026-05-12

Snapshot date for the requested stats. now (the default) reads current data from the BSI IP database. A value of the form YYYY-MM-DD reads historical data for that day; returns 404 if no data is available.

Response

OK - request successful.

datestring

The snapshot date the response was rendered against. Echoes the date query parameter when supplied, or the literal string now for live queries.

sourcestring

Where the data was sourced from. db indicates current BSI IP data; s3 indicates historical data.

Example response

{
  "date": "now",
  "source": "db",
  "stats": {
    "trust_levels": [
      {
        "trust_level": "1",
        "ip_count": 42315,
        "cidr_count": 218
      }
    ]
  }
}