Difficulty parsing an HTTP response

I’m having trouble structuring an HTTP response to be inserted into a table. I think I’ve already managed to organize the output using the JSON Calculation node. But from there I’m completely lost. Can anyone help me? I’ve included an example of the output.

{
  "status": 200,
  "statusText": "OK",
  "headers": {
    "date": "Tue, 06 Jan 2026 01:47:10 GMT",
    "server": "Apache",
    "x-frame-options": "SAMEORIGIN",
    "strict-transport-security": "max-age=63072000; includeSubdomains;",
    "set-cookie": "JSESSIONID=9999999999999999999999999999; Path=/nonio; Secure; HttpOnly",
    "content-type": "application/json",
    "vary": "Accept-Encoding,User-Agent",
    "keep-alive": "timeout=3, max=100",
    "connection": "Keep-Alive",
    "transfer-encoding": "chunked"
  },
  "config": {
    "transitional": {
      "silentJSONParsing": true,
      "forcedJSONParsing": true,
      "clarifyTimeoutError": false
    },
    "adapter": [
      "xhr",
      "http",
      "fetch"
    ],
    "transformRequest": [
      null
    ],
    "transformResponse": [
      null
    ],
    "timeout": 5000,
    "xsrfCookieName": "XSRF-TOKEN",
    "xsrfHeaderName": "X-XSRF-TOKEN",
    "maxContentLength": -1,
    "maxBodyLength": -1,
    "env": {},
    "headers": {
      "Accept": "application/json, text/plain, */*",
      "Content-Type": "application/json",
      "User-Agent": "axios/1.13.2",
      "Content-Length": "188",
      "Accept-Encoding": "gzip, compress, deflate, br"
    },
    "url": "https://example.com",
    "method": "post",
    "params": {},
    "data": "{\"applicationId\":\"ehuihk",\"accessToken\":\"x___________DGCwwllsEVSi0L\"}",
    "allowAbsoluteUrls": true
  },
  "data": {
    "list": "Pooo",
    "sucessoexecucao": true,
    "resultados": [
      {
        "Curso": "Degree1",
        "Disciplina": "Couse1",
        "Código": "08",
        "Turma": "1",
        "Sala": "Sala 1 ",
        "Outro Espaço": null,
        "Início": "03-11-2025 16:00:00",
        "Fim": "03-11-2025 18:00:00",
        "Ano Curricular": "1",
        "Docentes": "Teacher1"
      },
     {
        "Curso": "Degree2",
        "Disciplina": "Couse2",
        "Código": "25",
        "Turma": "1",
        "Sala": "Sala 2 ",
        "Outro Espaço": null,
        "Início": "05-11-2025 16:00:00",
        "Fim": "05-11-2025 18:00:00",
        "Ano Curricular": "1",
        "Docentes": "Teacher1"
      }
  ]
  }
}

Hello, you can use JSON mapping nodes to map field information, use loop nodes to loop through data, and add data nodes to write data.

im using the mapping i think correctly but the node only has 1 loop:
mapping:

loop:
image