Abstract API · JSON Structure

Email Reputation Risk Info Structure

Risk assessment for the email

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

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

Properties

address_risk_status domain_risk_status

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-risk-info-structure.json",
  "name": "RiskInfo",
  "description": "Risk assessment for the email",
  "type": "object",
  "properties": {
    "address_risk_status": {
      "type": "string",
      "description": "Risk level of the specific email address",
      "example": "low",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    },
    "domain_risk_status": {
      "type": "string",
      "description": "Risk level of the domain",
      "example": "low",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    }
  }
}