Image Tools · API-ready

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

Portrait

Response preview

Dimensions
2944×2208
MIME
image/jpeg
Size
597.55 KB
ImageDescription: "Trip to Silliseth"
Artist: "Pradeep Soni"
Make: "Picnie API"
Model: "Picnie"
DateTimeOriginal: "2025:06:27 10:30:00"
UserComment: "Incredible view from the lake!"
Copyright: "All rights at Picnie"

+ GPS, FILE, COMPUTED, EXIF blocks…

Full docs
2
REST endpoints
EXIF
read & write
API
key auth
Secure API keysProject-scopedURL-based images

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

01

Create a project

Use your Picnie project_id so metadata calls stay scoped to the right workspace.

02

Pass image URL

Point to a public JPEG URL - often the output URL from a prior Picnie job.

03

Get or add metadata

Call Get Image Metadata to inspect EXIF, or Add Image Metadata to write custom fields.

04

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.

Developer API

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.

POST Get Image Metadata
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"
  }'
POST Add Image Metadata
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

A POST endpoint that returns dimensions, MIME type, file size and EXIF data (including GPS when present) for a JPEG at a given URL within your project. https://docs.picnie.com/api-reference
Metadata APIs

Audit and tag images
at scale.

Get EXIF from any processed JPEG or write custom metadata before assets hit your DAM.