Abstract API · Schema

ErrorResponse

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

Properties

Name Type Description
message string
error string
View JSON Schema on GitHub

JSON Schema

abstract-api-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "The provided API key is invalid"
    },
    "error": {
      "type": "string",
      "example": "invalid_api_key"
    }
  }
}