Blocked on course one by failing API call

Continuing the discussion from Invalid JSON in response body, Node HTTP Request, Flow 2 course level 2:

Hi there, I am having an issue with the level one course where I am making the correct API call but getting the response “Invalid JSON in response body”

I have successfully called this API from the command line and have received an empty response:

Sending GET request to https://internal.users.n8n.cloud/webhook/course-level-1 to fetch dataset...

--- Success: API Response (Dataset) ---
""
-------------------------------------

The empty response is surely what counts as invalid JSON. Is it possible to have this investigated internally? Or is there something I’m missing?

Edit: I have since seen this topic where the same thing is happening, and it is the consensus in that thread that it is a server issue.

For future people stuck on this, I’ve hard coded the JSON response so that I can get on with the course for now:

[
  {
    "orderID": 1,
    "customerID": 8,
    "employeeName": "Mario",
    "orderPrice": 150.32,
    "orderStatus": "processing"
  },
  {
    "orderID": 2,
    "customerID": 5,
    "employeeName": "Mario",
    "orderPrice": 161.1,
    "orderStatus": "booked"
  },
  {
    "orderID": 3,
    "customerID": 1,
    "employeeName": "Samir",
    "orderPrice": 111.19,
    "orderStatus": "booked"
  },
  {
    "orderID": 4,
    "customerID": 2,
    "employeeName": "Amelie",
    "orderPrice": 61.16,
    "orderStatus": "booked"
  },
  {
    "orderID": 5,
    "customerID": 10,
    "employeeName": "Amelie",
    "orderPrice": 191.36,
    "orderStatus": "booked"
  },
  {
    "orderID": 6,
    "customerID": 2,
    "employeeName": "Mario",
    "orderPrice": 165.65,
    "orderStatus": "booked"
  },
]

You used the wrong URL when sending request