Create sensors from api alarm system

Hy guys, I managed to obtain my alarm api response where I can find all the values of my system.
I would like to integrate it in home assistant , for example, a sensor that can give me the status of the alarm.
The problem is my knowledge of yaml programming, I am TOTALLY noob in this and I am unable to understand the home assistant tutorial, maybe for some basic Infos are missing for me .

I can invoke the api with :
https://api.inimcloud.com/?req={“Params”:{“Info”:xxxx},“Node”:"",“Name”:"Inim Home",“ClientIP”:"",“Method”:“GetDevicesExtended”,“Token”:“xxxxxxxxx”,“ClientId”:“home-xxxxxxxxxx”,“Context”:“intrusion”}

the answer with al the data is this

{
"Status": 111111,
"ErrMsg": "",
"ts": "2022-05-27T06:57:39Z",
"Data": {
11111: {
"DeviceId": 111111,
"ActiveScenario": 3,
"ActiveScenarios": "3,4",
"Master": 1,
"Favorite": 1,
"CodeIndex": 0,
"counter_0": 1121,
"counter_1": 10,
"counter_2": 2,
"counter_3": 0,
"counter_4": 0,
"Name": "xxxxxxxxxxxxI 09 08 2017",
"InternalName": "xxxxxxxxxxxxx 09 08 2017",
"SerialNumber": "111111111111111111",
"ModelFamily": "SL",
"ModelNumber": "10100",
"Language": "it",
"ControlledBy": 2,
"BlockUserBinding": 0,
"InstReqPending": 0,
"Enabled": 1,
"EnrollDate": "2017-08-09T13:55:32Z",
"NetworkStatus": 4,
"LastCommunicationDate": "2022-05-27T06:57:39Z",
"PrimaryIpAddress": "xx.xxx.xxx.xx",
"PrimaryChannel": "SI",
"SecondaryIpAddress": null,
"SecondaryChannel": null,
"FirmwareVersionMajor": "6",
"FirmwareVersionMinor": "07",
"TZOffset": 4,
"Options": 111111111111111,
"Faults": 0,
"FaultList": [],
"FaultEventDescription": null,
"Voltage": 13.97752,
"Address": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"Lat": xx.74228,
"Lng": xx.2273073,
"Functionalities": 22222213123214,
"AlarmedAreas": null,
"AlarmEventDescription": null,
"Areas": [
  {
"AreaId": 0,
"Name": "PERIM.xxxxxx",
"Armed": 4,
"Alarm": 0,
"AlarmMemory": 0,
"Tamper": 0,
"TamperMemory": 0,
"AutoInsert": 1
},

can someone help me in creating a sensor for this, I need only one to understanding the procedure