Why is my URL not reachable on Pipedream, returning a TIMEOUT instead of a 401?

This topic was automatically generated from Slack. You can find the original thread here.

Hey there, it seems that this url is not reachable from within Pipedream. What could be the cause? :thinking_face:

It should give me at least 401, instead I am getting TIMEOUT

// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://connect-live.hoogwerkservice.nl/User/Makula/Machines/JSON",
    })
    return data["MCS-connect"]
  },
})

Is it possible that this service only accepts HTTP requests from a certain range of IP addresses?