Abstract API · Schema

CompanyBasic

Company information for the IP owner

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

Properties

Name Type Description
name string Company name
domain string Company domain
type string Company type
View JSON Schema on GitHub

JSON Schema

abstract-api-companybasic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyBasic",
  "title": "CompanyBasic",
  "type": "object",
  "description": "Company information for the IP owner",
  "properties": {
    "name": {
      "type": "string",
      "description": "Company name",
      "example": "Google LLC"
    },
    "domain": {
      "type": "string",
      "description": "Company domain",
      "example": "google.com"
    },
    "type": {
      "type": "string",
      "description": "Company type",
      "example": "hosting"
    }
  }
}