@James-McAllister_0459 said in deleting docker images via REST API: Is there any way to get the published date or created date of the image from a REST api? The Docker API in ProGet doesn't (currently) return a Last-Modified header, but depending on which date you want, it can still be accessed: Published date can be accessed via the native API using the tables you identified. However, this API is generated directly from internal ProGet database procedures, so this may break in the (unlikely) event that ProGet's Docker database structure changes. Created date is a property of the image, which is embedded in the manifest's config field. Inside the JSON blob referenced by the manifest, the creation date of the image is in a field named created. This is optional in the Docker specification, but if you're building your own images, it should always be present.