Error message from y current system

:bullseye: What is your goal?

i want to ressolve this issue so my flow can work

:thinking: What is the problem?

i get this error message on my system which i am trying to use to scrape a companies website so i can use feed chat gpt the info and create a unique opener for my cold outreach.

:test_tube: What have you tried so far?

i have had a few issues so far but i cannot see what is wrong with it now it was timing out for taking too long before now it just straight up fails

:camera_with_flash: Screenshots: scenario setup, module configuration, errors

This is not a Make issue. Your target API is simply saying “I am not available or can’t be accessed right now.”

The HTTP (legacy) module is calling https://scriptsnap.napiapi.com/scrape and the server is returning 503 Service Unavailable, which usually means the service is down, overloaded, or rate limiting your request.

To debug, first check that the API is actually up and try the same request in Postman or curl to confirm you get the same 503. Then check whether you are hitting any rate or usage limits and make sure your method, headers, and body match what the API expects.

On the Make side, wrap the HTTP module in an error handler, add a short sleep and a few retries on 503, and only fail the scenario after those retries.

The error is real, but it is coming from the external service, so you should fix this by: validating the request, talking or contacting the provider if needed, and making your scenario more tolerant of temporary 503s.

I hope this makes it clear for you!

Hello,

API response mostly depends on code used by this API, e.g., what the developer coded.

Sometimes to save time/costs, error handling is omitted and/or simplified. That’s why 503/500 etc. doesn’t always mean the service is unavailable. You should always start with debugging on your end.

I see that in your case you are missing " in your request body:

{
  "url":"https://www.sreservicesltd.co.uk/
}

Use correct syntax of JSON and let us know if that solves your problem.

{
    "url": "https://www.sreservicesltd.co.uk/"
}
1 Like

i have made the fix but i still get this error message

Where are you copy pasting this address from? Please delete your source and start over, there is an empty space between scrape and ninja and you already had that issue resolved.

Now you have a space in the URL, which makes it invalid, and the DNS could not resolve to that broken URL.

If you require further assistance, please provide the full input bundle by clicking the “Download” icon on the top right:

Please provide the input/output bundles of each of the relevant modules by running the scenario, or get the bundles from a previous run from the Scenario “History” tab.

Providing the bundles from a scenario run will allow others to replicate what is going on, especially if there are complex data structures (nested arrays and collections) and external services. This helps mapping the correct raw variable names from collections (instead of the label/display name).

Need help❓View instructions ◀

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

A. Upload a Text File

Save each bundle contents in a plain text editor as a moduleNumber-output.txt file. Open the file to check if it has not added additional formatting or encoded the plain text.

  • You can upload files and images to this forum by clicking on the upload button:

    Uploading an attachment here will look like this:
    module1-input.txt (1.2 KB)
    module1-output.txt (3.4 KB)

B. Insert a Formatted Code Block

If you are unable to upload files on this forum, alternatively you can paste the bundles AND format them correctly.

:warning: Formatting IS Important! :warning:

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 —
    Manually type three backticks ``` in a separate line before and after the content, like this,

    ```
    text goes here
    ```
    
  • Method 2: Highlight the pasted content, then click the preformatted text/code button —

  • Method 3: Upload your file elsewhere and share the public link —
    This method is only advised for large files exceeding the forum upload limit.

This will allow others to better assist you. Thanks!

— @samliew