ExifTrace Developer API Documentation
Integrate privacy-first photo forensics, EXIF extraction, and metadata stripping directly into your applications.
Base URL & Endpoints
Base URL: https://api.exiftrace.com
1. POST /v1/analyze
Extract structured EXIF, GPS, camera settings, exposure EV, device fingerprints, reverse geocoding, and historical weather in JSON format.
curl -X POST "https://api.exiftrace.com/v1/analyze?enrich=1" \
-H "Content-Type: image/jpeg" \
--data-binary @photo.jpg
2. POST /v1/clean
Losslessly strip all EXIF, GPS, IPTC, and XMP metadata from JPEG images and return the cleaned binary file.
curl -X POST "https://api.exiftrace.com/v1/clean" \
-H "Content-Type: image/jpeg" \
--data-binary @photo.jpg --output cleaned.jpg