Flexible Image Metadata
S3 metadata is immutable. Update image information as your application evolves. Store custom metadata, organize by projects, and query images efficiently.
Metadata Capabilities
Store and update custom metadata for all your images. No limitations.
// Update image metadata anytimeconst updateImageMetadata = async (imageUrl, metadata) => {const res = await fetch('https://api.icefiery.com/api/v1/update-image-metadata',{method: 'POST',headers: {'X-API-Key': 'private_abc123def456...','Content-Type': 'application/json',},body: JSON.stringify({imageUrl: imageUrl,set: {alt: metadata.alt,category: metadata.category,productId: metadata.productId,photographer: metadata.photographer,location: metadata.location}}),});return res.json();};// Example usageawait updateImageMetadata('https://cdn.icefiery.com/img_abc123', {alt: 'Updated product photo showing new color variant',category: 'product-photos',productId: 'prod_xyz789',photographer: 'John Doe',location: 'Studio A'});
Real-World Use Cases
See how flexible metadata solves common image management problems.
Update product information, pricing, and availability without re-uploading images. Track which products are featured or on sale.
Update alt text for accessibility, change categories as content evolves, and track usage across different articles.
Track moderation status, user information, and content policies. Update as moderation decisions change.
Track campaign performance, A/B test variants, and update messaging without changing image URLs.
Ready for Flexible Metadata?
Start storing and updating custom metadata with your images. No more immutable S3 limitations.