Build/Tools/Image Metadata
Utility1 credit / callGET /api/v1/tools/image/metadata

Image Metadata

Extract EXIF, dimensions, dominant color, channel stats

Extract complete metadata from any image: dimensions, DPI, colorspace, alpha channel, dominant color (RGB + hex), per-channel statistics (mean, std dev), EXIF availability flag, and ICC profile flag. Available as GET with image_url or POST multipart.

How it works

Reads image headers and pixel data via Sharp. For GET requests, fetches the image from the URL. For POST, accepts a multipart upload. Returns structured JSON metadata.

What you could build

AssetInspect
Validate image specs before accepting user uploads
$500–$2K MRR
est. MRR
ColorDB
Extract dominant colors for auto-palette generation
$1K–$3K MRR
est. MRR
MediaAudit
Bulk audit image library for resolution and format compliance
$1K–$3K MRR
est. MRR

Parameters

image_urlrequired
Public URL of image to analyse· e.g. https://example.com/photo.jpg
imageoptional
Image file as alternative to URL· e.g. photo.jpg

Example request

curl
curl "https://aplicious.com/api/v1/tools/image/metadata?image_url=https://example.com/photo.jpg" \
  -H "X-API-Key: YOUR_API_KEY"

Example response

json
{
  "success": true,
  "data": {
    "file": { "size_bytes": 142000, "format": "jpeg" },
    "image": { "width": 1920, "height": 1080, "dpi": 72, "colorspace": "srgb", "channels": 3, "has_alpha": false },
    "dominant_color": { "r": 82, "g": 130, "b": 195, "hex": "#5282C3" },
    "channel_stats": {
      "r": { "mean": 82, "std": 41 },
      "g": { "mean": 130, "std": 38 },
      "b": { "mean": 195, "std": 29 }
    },
    "has_exif": true,
    "has_icc_profile": true
  }
}
Ready to use Image Metadata?

Free plan — 100 calls/month, no credit card.