We can get the value of these attributes from Artifactory UI, Artifactory REST API or Artifactory Database. We have described each step below in detail.
From the Artifactory UI, we have to navigate to respective Artifact under Application -> Artifactory -> Artifacts and then you find the Created Date, Last Modified Date and Last Downloaded Date(If download) under the General Info. Attached below screenshot for reference.

From the Artifactory REST API , we can get the values of these attributes using file info and file statistics REST API. From the file info REST API, we can get the Created Date, Last Modified Date and Last updated Date and from the file statistics REST API, we can get the Last Downloaded Date if Artifact is downloaded at least once else the value will be ‘0’.
From the Artifactory Database, all these attributes are stored in the nodes and stats tables. From the nodes table, we can get the Created Date, Last Modified Date and Last updated Date and from the stats table, we can get the Last Downloaded Date if Artifact is downloaded at least once else we will not have an entry in the stats table. The value of the dates will be stored in the epoch time format. Please you can use an online epoch converter to connect it to human readable format.
From the Artifactory UI, we have to navigate to respective Artifact under Application -> Artifactory -> Artifacts and then you find the Created Date, Last Modified Date and Last Downloaded Date(If download) under the General Info. Attached below screenshot for reference.
From the Artifactory REST API , we can get the values of these attributes using file info and file statistics REST API. From the file info REST API, we can get the Created Date, Last Modified Date and Last updated Date and from the file statistics REST API, we can get the Last Downloaded Date if Artifact is downloaded at least once else the value will be ‘0’.
From the Artifactory Database, all these attributes are stored in the nodes and stats tables. From the nodes table, we can get the Created Date, Last Modified Date and Last updated Date and from the stats table, we can get the Last Downloaded Date if Artifact is downloaded at least once else we will not have an entry in the stats table. The value of the dates will be stored in the epoch time format. Please you can use an online epoch converter to connect it to human readable format.