Abstract API · JSON Structure

Image Processing Image Processing Response Structure

Image processing result

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

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

Properties

original_size new_size saved_bytes saved_percent url

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/image-processing-image-processing-response-structure.json",
  "name": "ImageProcessingResponse",
  "description": "Image processing result",
  "type": "object",
  "properties": {
    "original_size": {
      "type": "int32",
      "description": "Original file size in bytes",
      "example": 102400
    },
    "new_size": {
      "type": "int32",
      "description": "Processed file size in bytes",
      "example": 51200
    },
    "saved_bytes": {
      "type": "int32",
      "description": "Bytes saved by processing",
      "example": 51200
    },
    "saved_percent": {
      "type": "double",
      "description": "Percentage of size reduction",
      "example": 50.0
    },
    "url": {
      "type": "uri",
      "description": "URL to download the processed image",
      "example": "https://dl.abstractapi.com/processed/abc123.webp"
    }
  }
}