404 Error to retrieve pictures in HTTP: Get a File module, even if URL is correct

Hello everyone.
Any advice on troubleshooting or a workaround when an image url can’t be found? I know for a fact the URL is spelled correctly and does work if I copy paste it manually it by myself. Actually, the workflow used to work until a while ago.

The output is the following:
[
{
“statusCode”: 404,
“headers”: [
{
“name”: “date”,
“value”: “Tue, 23 Sep 2025 21:26:44 GMT”
},
{
“name”: “content-type”,
“value”: “application/json”
},
{
“name”: “content-length”,
“value”: “45”
},
{
“name”: “connection”,
“value”: “keep-alive”
},
{
“name”: “cf-ray”,
“value”: “983d1f3e5f3d8244-IAD”
},
{
“name”: “access-control-allow-origin”,
“value”: “*”
},
{
“name”: “via”,
“value”: “1.1 google”
},
{
“name”: “cf-cache-status”,
“value”: “EXPIRED”
},
{
“name”: “expires”,
“value”: “Wed, 24 Sep 2025 01:26:44 GMT”
},
{
“name”: “cache-control”,
“value”: “public, max-age=14400”
},
{
“name”: “vary”,
“value”: “Accept-Encoding”
},
{
“name”: “server”,
“value”: “cloudflare”
}
],
“cookieHeaders”: ,
“data”: “{\“errorCode\”:404,\“message\”:\“No Image found\”}\n”,
“fileSize”: 45,
“fileName”: “file.json”
}
]

Hello @AI_Deal_Book and Welcome to the Make Community!

Unfortunately, there’s not enough info here to offer up any help or advice.

Are you trying to download a file?
What modules are you using?
What are your inputs?

If you’re able to answer some of these, hopefully we’ll be able to help you out!

1 Like

Hey @AI_Deal_Book , Are you sure the URL is a download URL?

Welcome to the Make community!

Looks like your URL has expired. Try getting a new URL.

To allow others to assist you with your scenario, please provide the following:

1. All Relevant Screenshots

We need to see what you’re working with to give you the best advice. Screenshots are extremely important because Make is a visual editor — a picture provides us with more context.

It would help us identify the issue by having screenshots of:

  • the full scenario,
  • the zoomed in section of the scenario that you are referring to (if your scenario is huge),
  • a full scenario run/execution (showing output “speech” bubbles),
  • any error messages,
  • individual module fields,
  • relevant filter settings (conditions), and
  • each module’s output bundles
  • any external services (spreadsheet headers, sample data, regex101.com, etc.)

You can upload images here using the Upload icon in the text editor:

We would appreciate it if you could upload screenshots here instead of linking to them outside of the forum. This allows us to zoom in on the image when clicked, and avoid tracking cookies from third-party websites.

2. Scenario Blueprint

Please export the scenario blueprint. Providing your scenario blueprint file will allow others to quickly recreate and see how you have set up the mappings in each module, and also allows us take screenshots or provide module exports of any solutions we have for you in return - this would greatly benefit you in implementing our suggestions as you can simply paste module exports back into your scenario editor!

To export your scenario blueprint, click the three dots at the bottom of the editor then choose ‘Export Blueprint’.

You can upload the file here by clicking on this button:

3. Module Output Bundles

Please provide the output bundles of each of the relevant modules by running the scenario (you can also get this without re-running your scenario from the History tab).

Click on the white speech bubbles on the top-right of each module and select “Download input/output bundles”.

A. Upload as a Text File

Save each bundle contents in a plain text editor (without formatting) as a bundle.txt file.

You can upload the file here by clicking on this button:

B. Insert as Formatted Code Block

If you are unable to upload files on this forum, alternatively you can paste the formatted bundles.
Here are some ways to provide text content in a way that it won’t be modified by the forum.

  • Method 1: Type code fence manually
    Add three backticks ``` in a separate line before and after the content, like this,

    ```
    text goes here
    ```
    
  • Method 2: Highlight and click the “preformatted text” button in the editor

  • Method 3: Upload your file and share the public link
    (this method is only recommended for large files exceeding the forum upload limit)

Providing the input/output bundles will allow others to replicate what is going on in the scenario, especially if there are complex data structures (nested arrays and collections) or if external services are involved, and help you with mapping the raw property names from collections.

Sharing these details will make it easier for others to assist you.

Thanks everyone for your comments.
I figured out what was the source of the error. I am using the Get Elements from HTML Parser Module to retrieve some images. I then attempted to use an Array Aggregator and an Iterator inmediately after, in order to filter only the first X number of images using slice as a filter (in case some websites have dozens of images and my workflow consumes too much credits).
This Aggregator/Iterator somehow slightly changed the URL and made it unretrievable. Once I deleted the aggregator and iterator, the workflow worked fine.

So in conclusion, the aggregator/iterator made the URLs unretrievable.
However, I still need to figure out how to filter and choose only the first x number of modules after the Get Elements from HTML Parser. Any suggestions there?

You can aggregate to an array and use the slice function, or if it is available, use the bundle order position in the Text Parser output in a filter.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

1 Like