View All APIs

Image Metadata Reader API

About

The Image Metadata Reader API allows you to extract and view metadata embedded within image files. This metadata—such as EXIF, IPTC, or XMP—can include details like camera specifications, GPS coordinates, timestamps, image dimensions, orientation, and editing history.

API Documentation

Copied!
https://imagemetapro.com/tools/utils/read-metadata-api.php 

Request Methods

Option 1: Request Using Image URL

Method: POST

Body Type: raw: json

Headers: Content-Type: application/json

Sample Payload:

Copied!
            {
  "api_key" : "{{API Key}}",
  "image_url": "your-image-url"
}

Option 2: Request Using Local Image Upload

Method: POST

Body Type: form-data

Headers: Content-Type: multipart/form-data

Parameters:

Key Type Value
api_key text {{API Key}}
image file Upload local image

Note: Replace {{API Key}} with your actual API key from your dashboard.

Error Codes

Copied!
{
    "error": true,
    "message":"Invalid image URL or image data."
}