Pull EXIF, GPS coordinates, camera settings, and IPTC keywords from any JPEG, TIFF, HEIC, PNG, or WebP URL. Returns dimensions, camera make and model, lens, aperture, shutter speed, ISO, GPS latitude and longitude, copyright, and IPTC keywords. Built for batch: hand it 10,000 image URLs and it returns structured rows. Ideal for OSINT investigations, photo forensics, asset catalogs, and copyright auditing.
# Start a run via the Apify API curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~image-metadata-extractor/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "imageUrls": [ "https://example.com/photo-1.jpg", "https://example.com/scene-2.heic", "https://example.com/wedding-3.tiff" ], "extractGps": true, "extractIptc": true }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/image-metadata-extractor
| Field | Type | Example |
|---|---|---|
| source_url | string | https://example.com/photo.jpg |
| width | integer | 4032 |
| height | integer | 3024 |
| camera_make | string | Apple |
| camera_model | string | iPhone 15 Pro |
| aperture | string | f/1.78 |
| iso | integer | 64 |
| date_taken | string | 2026-03-12T14:22:18Z |
| gps_latitude | number | 40.7589 |
| gps_longitude | number | -73.9851 |