Hi all,
I’ve been learing Make.com this summer, with my first goal compressing and converting the images of a large collection list in Webflow. I’ve managed to do so for the spotlight images, and am now trying to do so for the multi image fields.
I’m running into two problems: the first one is in ShortPixel, where my first call to the API returns:
"Status": {
"Code": "1",
"Message": "Image scheduled for processing."
}
I’ve contacted them and they say that you have to run it twice, and indeed the second time I get the expected result, but it only works on batches of max 50 images, when the amount becomes too large the above return becomes dominant again. I’ve contacted them and they say I have to stick to max 50 images, implying it’s not built for large amounts of images. If someone is familiar with this kind of problem and can come up with a solution, please let me know, since this is the cheapest option and I’ve got to convert about 25.000 images.
Then I returned back to using Tinify. I got it to work in the most default way, just compressing, but I wasn’t able to figure out how to convert images to AVIF. The built-in converter module doesn’t feature AVIF unfortunately, and as soon as I added the following code in the body I received an error:
{
"convert": { "type": "image/webp" }
}
I tried to sequence another API call and adding the above in the Body, but my problem is I can’t get the input URL from the preceding Tinify module to work. I’ve found this post of @samliew but after importing the blueprint I’m still not able to get it to work. His URL is:
{{first(map(1.headers; “value”; “name”; “location”))}}
I don’t understand it and can’t map it correctly (I mean I understand the function but I don’t understand the goal). I first tried to map the output location of the previous Tinify module directly, getting back an error. I also tried the above in many different ways, for instance also with “location” instead of “value” and removing the last two. I also tried to feed the slug, since that’s what’s being asked in the explanation of the URL field:
All with no result. Can someone shine a light on this, that would be great!
If there are other solutions feel free to share. I saw Picsart recommended here, but it seam to be more expensive.
edit: I both used the regular API call and the Tinify Make An API Call

