Abstract API · Schema

IPSecurityFlags

Security classification flags for the IP

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

Properties

Name Type Description
is_vpn boolean IP is a known VPN endpoint
is_proxy boolean IP is a known proxy server
is_tor boolean IP is a Tor exit node
is_hosting boolean IP belongs to a hosting or cloud provider
is_relay boolean IP is used as a relay (e.g., Apple Private Relay)
is_mobile boolean IP is associated with a mobile network
is_abuse boolean IP has been flagged for abuse
View JSON Schema on GitHub

JSON Schema

abstract-api-ipsecurityflags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IPSecurityFlags",
  "title": "IPSecurityFlags",
  "type": "object",
  "description": "Security classification flags for the IP",
  "properties": {
    "is_vpn": {
      "type": "boolean",
      "description": "IP is a known VPN endpoint",
      "example": false
    },
    "is_proxy": {
      "type": "boolean",
      "description": "IP is a known proxy server",
      "example": false
    },
    "is_tor": {
      "type": "boolean",
      "description": "IP is a Tor exit node",
      "example": false
    },
    "is_hosting": {
      "type": "boolean",
      "description": "IP belongs to a hosting or cloud provider",
      "example": true
    },
    "is_relay": {
      "type": "boolean",
      "description": "IP is used as a relay (e.g., Apple Private Relay)",
      "example": false
    },
    "is_mobile": {
      "type": "boolean",
      "description": "IP is associated with a mobile network",
      "example": false
    },
    "is_abuse": {
      "type": "boolean",
      "description": "IP has been flagged for abuse",
      "example": false
    }
  }
}