Security Audit Summary API

The Security Audit Summary endpoint returns an aggregated overview of your organization's security posture. It covers the overall security score, password risk indicators, passkey adoption, vault distribution, breached websites, and two-factor authentication availability.

Use this endpoint for:

  • Leadership reporting and executive security dashboards

  • Periodic security reviews and compliance checks

  • Identifying high-risk areas that require administrative action

Required scope: Security Audit

Request

POST api/v1/security/overview/

This endpoint requires no request body or query parameters.

Response

Top-Level Fields

Field

Type

Description

error

boolean

false on success

code

string

A machine-readable response identifier (e.g. audit_report)

security

string

Overall security status of the organization (e.g. at_risk, secure)

security_audit_score

float

Aggregated security score for the organization (0–100)

last_synced

timestamp

Unix timestamp of the last audit data sync

passwords

Aggregated metrics across all password items in the organization.

Field

Type

Description

total_passwords.count

integer

Total number of password items across all vaults

total_passwords.percentage

float

Always 100.0, represents the full baseline

excluded.count

integer

Number of passwords excluded from the audit

excluded.percentage

float

Percentage of total passwords that are excluded

compromised.count

integer

Number of compromised passwords

compromised.percentage

float

Percentage of total passwords that are compromised

weak.count

integer

Number of weak passwords

weak.percentage

float

Percentage of total passwords that are weak

identical.count

integer

Number of reused/identical passwords

identical.percentage

float

Percentage of total passwords that are identical

sso_identical.count

integer

Number of passwords identical to SSO credentials

sso_identical.percentage

float

Percentage of total passwords matching SSO credentials

non_compliant.count

integer

Number of passwords not meeting your organization's policy

non_compliant.percentage

float

Percentage of total passwords that are non-compliant

expired.count

integer

Number of expired passwords

expired.percentage

float

Percentage of total passwords that are expired

items

Aggregated metrics across all item types in the organization.

Field

Type

Description

total_items.count

integer

Total number of items across all vaults

total_items.percentage

float

Always 100.0, represents the full baseline

passkey.count

integer

Number of items secured with a passkey

passkey.percentage

float

Percentage of total items using passkeys

websites

Aggregated metrics related to websites associated with password items.

Field

Type

Description

breached.count

integer

Number of items associated with a breached website

breached.percentage

float

Percentage of total passwords linked to breached websites

two_fa_available.count

integer

Number of items where the associated website supports 2FA

two_fa_available.percentage

float

Percentage of total passwords on 2FA-supported websites

vaults

Aggregated breakdown of vaults across the organization.

Field

Type

Description

total_vaults.count

integer

Total number of vaults in the organization

total_vaults.percentage

float

Always 100.0, represents the full baseline

primary_vaults.count

integer

Number of primary vaults

primary_vaults.percentage

float

Percentage of total vaults that are primary vaults

secondary_vaults.count

integer

Number of secondary (non-primary) vaults

secondary_vaults.percentage

float

Percentage of total vaults that are secondary vaults

Example Response

{
  "error": false,
  "code": "audit_report",
  "security": "at_risk",
  "security_audit_score": 59,
  "last_synced": 1776252306,
  "passwords": {
    "total_passwords": { "count": 4782, "percentage": 100.0 },
    "excluded": { "count": 15, "percentage": 0.31 },
    "compromised": { "count": 2415, "percentage": 50.5 },
    "weak": { "count": 1393, "percentage": 29.13 },
    "identical": { "count": 1453, "percentage": 30.38 },
    "sso_identical": { "count": 0, "percentage": 0.0 },
    "non_compliant": { "count": 1267, "percentage": 26.5 },
    "expired": { "count": 2627, "percentage": 54.94 }
  },
  "items": {
    "total_items": { "count": 6558, "percentage": 100.0 },
    "passkey": { "count": 875, "percentage": 13.34 }
  },
  "websites": {
    "breached": { "count": 66, "percentage": 1.38 },
    "two_fa_available": { "count": 1477, "percentage": 30.89 }
  },
  "vaults": {
    "total_vaults": { "count": 111, "percentage": 100.0 },
    "primary_vaults": { "count": 11, "percentage": 9.91 },
    "secondary_vaults": { "count": 100, "percentage": 90.09 }
  }
}