Download list of files

Download list of files in excel with name a UUID column from dashboard. Easy and very useful to convert thousands of urls with formulas.

Hi @josecardoso,

Currently, you can get a list of files from a particular project in JSON format using our REST API. See our docs to learn more about this API method:

Here’s a response example

{
  "next": "https://api.uploadcare.com/files/?from=3100&ordering=-size&stored=true&limit=10&offset=0",
  "previous": null,
  "total": 1893,
  "per_page": 10,
  "results": [
    {
      "original_file_url": "http://www.ucarecdn.com/017162da-e83b-46fc-89fc-3a7740db0a82/mango.jpg",
      "image_info": {
        "height": 510,
        "width": 910,
        "geo_location": null,
        "datetime_original": null,
        "format": "JPEG"
      },
      "mime_type": "image/jpg",
      "is_ready": true,
      "url": "https://api.uploadcare.com/files/017162da-e83b-46fc-89fc-3a7740db0a82/",
      "uuid": "017162da-e83b-46fc-89fc-3a7740db0a82",
      "original_filename": "mango.jpg",
      "datetime_uploaded": "2021-01-09T16:31:08.216Z",
      "size": 390340,
      "is_image": true,
      "datetime_stored": "2021-02-03T13:10:04.430Z",
      "datetime_removed": null,
      "source": null
    },
    ...
  ]
}

Then you can parse the response on your end to extract the required fields and save them in a format of your choice.

Anyway, thank you for the feature suggestion. We’ll consider adding it to our system in the future.

The problem is that me, like probably many others, don’t have the possibility to develop. Considering that your urls are different for each image, and not using a subdomain, i need to download the list and match it with product list on my website.

Having 27000 images any manual operation is out of question.

Best
Jose