Read & write image metadata
Inspect EXIF and file properties from processed images, or attach custom metadata for DAM, PIM and downstream workflows - via Picnie REST APIs.
- Get EXIF & dimensions
- Add custom fields
- Upload or sample
- Live preview
Requires Picnie API key · JPEG, PNG & WEBP
Choose image
Preview: Portrait

Response preview
- Dimensions
- 2944×2208
- MIME
- image/jpeg
- Size
- 597.55 KB
+ GPS, FILE, COMPUTED, EXIF blocks…
Why teams use Picnie metadata APIs
Get Image Metadata
Retrieve dimensions, MIME type, file size and full EXIF blocks from a JPEG URL - ideal for auditing automation outputs.
Add Image Metadata
Attach ImageDescription, Artist, Copyright, UserComment, DateTimeOriginal and more before assets land in your DAM or PIM.
Pipeline-friendly
Pair with Create Image, Resize or Compress - read metadata after processing or stamp fields before delivery.
Developer-ready
JSON POST requests with Authorization header. Test in Postman or wire into Node, Python, PHP and any HTTP client.
How it works
Create a project
Use your Picnie project_id so metadata calls stay scoped to the right workspace.
Pass image URL
Point to a public JPEG URL - often the output URL from a prior Picnie job.
Get or add metadata
Call Get Image Metadata to inspect EXIF, or Add Image Metadata to write custom fields.
Automate at scale
Chain with webhooks, batch jobs and integrations - audit or tag every asset programmatically.
Built for ops and engineering
Audit pipelines
Verify dimensions, EXIF and file size after batch resize or compress jobs.
DAM & PIM tagging
Stamp Artist, Copyright and descriptions before assets sync to your catalog.
Ecommerce workflows
Confirm product shot metadata matches listing requirements and brand rules.
Debug automations
Read metadata when a webhook fires to trace which template run produced an image.
Do more with your assets
Two endpoints for metadata workflows
Read metadata associated with processed images, or attach custom fields for DAM, PIM and downstream automation. Full request and response examples on docs.picnie.com.
curl -X POST "https://picnie.com/api/v1/get-image-metadata" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"project_id": "1867",
"image_url": "https://your-cdn.com/photo.jpg"
}'curl -X POST "https://picnie.com/api/v1/add-image-metadata" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"project_id": "1867",
"image_url": "https://your-cdn.com/photo.jpg",
"metadata": {
"ImageDescription": "Trip to Silliseth",
"Artist": "Pradeep Soni",
"Copyright": "All rights at Picnie"
}
}'Frequently asked questions
Audit and tag images
at scale.
Get EXIF from any processed JPEG or write custom metadata before assets hit your DAM.