Abstract API · Schema

BreachInfo

Data breach history for the email

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
total_breaches integer Total number of breaches the email appeared in
date_first_breached string Date of the earliest known breach
date_last_breached string Date of the most recent breach
breached_domains array Domains where the email was breached
View JSON Schema on GitHub

JSON Schema

abstract-api-breachinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BreachInfo",
  "title": "BreachInfo",
  "type": "object",
  "description": "Data breach history for the email",
  "properties": {
    "total_breaches": {
      "type": "integer",
      "description": "Total number of breaches the email appeared in",
      "example": 0
    },
    "date_first_breached": {
      "type": "string",
      "format": "date",
      "description": "Date of the earliest known breach",
      "example": "2020-01-15"
    },
    "date_last_breached": {
      "type": "string",
      "format": "date",
      "description": "Date of the most recent breach",
      "example": "2023-06-01"
    },
    "breached_domains": {
      "type": "array",
      "description": "Domains where the email was breached",
      "items": {
        "type": "string"
      },
      "example": [
        "breached-site.com"
      ]
    }
  }
}