Abstract API · JSON Structure

Email Reputation Breach Info Structure

Data breach history for the email

Type: object Properties: 4
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

BreachInfo is a JSON Structure definition published by Abstract API, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

total_breaches date_first_breached date_last_breached breached_domains

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/email-reputation-breach-info-structure.json",
  "name": "BreachInfo",
  "description": "Data breach history for the email",
  "type": "object",
  "properties": {
    "total_breaches": {
      "type": "int32",
      "description": "Total number of breaches the email appeared in",
      "example": 0
    },
    "date_first_breached": {
      "type": "date",
      "description": "Date of the earliest known breach",
      "example": "2020-01-15"
    },
    "date_last_breached": {
      "type": "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"
      ]
    }
  }
}