Best Free Image Metadata Viewer

See the hidden EXIF a photo carries — camera, date, GPS — or strip it out for privacy. Free.

Reading shows the embedded data; stripping downloads a clean copy.

100% free No signup No watermark Files processed in memory, never stored
Go Pro for the best AI models — image, video and chat — plus bigger uploads, priority in the queue and no waiting. Upgrade to Pro
Love best.free? Share it

How it works

  1. Upload. Choose a photo to inspect (up to 40 MB).
  2. Read or strip. View its dimensions, format and full EXIF, or choose strip to remove the metadata.
  3. See or download. Read the metadata on the page, or download a metadata-free copy of the image.

About this tool

Image Metadata Viewer reads the hidden EXIF data embedded in a photo: the camera and lens, the date it was taken, exposure settings, and often the GPS coordinates of where it was shot. It shows you exactly what a photo is quietly carrying. If you'd rather not share that, switch to strip mode and the tool hands back a clean copy of the image with the metadata removed. Nothing is stored — the photo is read in memory and discarded.

What people use it for

  • Check whether a photo contains GPS location data
  • See what camera and settings took a shot
  • Strip metadata before sharing a photo publicly
  • Confirm the original date a photo was taken

Developer API

Automate this tool from your own code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup — API keys for higher limits are coming.

POST https://best.free/api/tools/image-metadata/
Parameter Example Required Notes
file (file) photo.jpg Yes Any common image, ≤25 MB.
action read No "read" returns JSON; "strip" returns a metadata-free image.
curl -X POST https://best.free/api/tools/image-metadata/ \
  -F 'file=@photo.jpg' \
  -F 'action=read' \
  -o metadata.json
import requests

files = {"file": open("photo.jpg", "rb")}
data = {"action": "read"}

r = requests.post("https://best.free/api/tools/image-metadata/", files=files, data=data)
with open("metadata.json", "wb") as out:
    out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("action", "read");

const r = await fetch("https://best.free/api/tools/image-metadata/", { method: "POST", body: fd });
const blob = await r.blob();  // the metadata.json

Response: JSON of dimensions, format and EXIF (or a stripped image when action=strip).

Frequently asked questions

It reads the image’s dimensions, format and colour mode, plus its EXIF tags — typically the camera and lens, the capture date and exposure settings, and any embedded GPS coordinates.

Many phones tag photos with the exact location they were taken. If you share such a photo, you may be revealing where you live or were standing, which is why stripping metadata is a useful privacy step.

Choose the strip option and the tool returns a clean copy of the image with the EXIF removed, while leaving the picture itself unchanged.

No. Only the metadata is removed; the pixels are preserved, so the visible image is identical to the original.

Screenshots, many web images and already-stripped photos carry little or no EXIF. The tool simply shows whatever is present, which is sometimes just the basic dimensions and format.

No. The image is read in memory for your request and discarded immediately — nothing is written to disk or kept.

Yes. POST your file as multipart/form-data to /api/tools/image-metadata/ and the processed file streams straight back — the same engine the web tool uses, so results are identical. It is rate-limited per IP like the web version and needs no signup; API keys for higher limits are coming. See the API section above for ready-to-run curl, Python and JavaScript examples.

Yes — Image Metadata Viewer is completely free, with no watermark on the output and no credit card required.

Yes. It runs in your browser, so Image Metadata Viewer works on phones and tablets as well as desktop — there is no app to install.

No. Image Metadata Viewer works with no signup at all; an optional free account only exists to unlock higher usage limits.

Related tools

Rate this page
5.0/5 (0)

What could we improve? Your feedback helps us fix issues.