How to create checkbox automatic from ajax call

Hi I needed some help on making it to auto create a checkbox to my ajax name how can i do it ?

<input type="checkbox" id="checkbox"><label id="checkbox" style="padding-left: 10px;">test</label>

Ajax call sample for options

 $.ajax({
                            // The url that you're going to post 
                            /* 
                                                    
                                                    This is the url that you're going to put to call the
                                                    backend api,
                                                    in this case, it's 
                                                    https://ecoexchange.dscloud.me:8090/api/get (production env)
                                                
                            */
                            url: "https://ecoexchange.dscloud.me:8090/api/get",
                            // The HTTP method that you're planning to use
                            // i.e. GET, POST, PUT, DELETE 
                            // In this case it's a get method, so we'll use GET
                            method: "GET",
                            // In this case, we are going to use headers as 
                            headers: {
                                // The query you're planning to call
                                // i.e. <query> can be UserGet(0), RecyclableGet(0), etc.
                                query: "RecyclableTypeGet()",
                                // Gets the apikey from the sessionStorage
                                apikey: sessionStorage.getItem("apikey")
                            },
                            success: function (data, textStatus, xhr) {
                                // console.log(data);
                                for (let option of data) {
                                                        $('#select-recyclable-type').append($('<option>', {
                                                            value: option.RecyclableType,
                                                            text: option.RecyclableType
                                                        }));
                                                     
                                                    }


                            },
                            error: function (xhr, textStatus, err) {
                                console.log(err);
                               
                            }
                        });

this is my json response that i am going to use for the name only

[
    {
        "RecyclableID": 1,
        "Name": "recyclable",
        "RecyclableType": "test recyclable type"
    },
    {
        "RecyclableID": 3,
        "Name": "test recyclable 2",
        "RecyclableType": "WASTE"
    },
    {
        "RecyclableID": 129,
        "Name": "test recyclable 4",
        "RecyclableType": "test recyclable type"
    },
    {
        "RecyclableID": 131,
        "Name": "test recyclable 6",
        "RecyclableType": "test recyclable type"
    },
    {
        "RecyclableID": 132,
        "Name": "test recyclable 7",
        "RecyclableType": "test recyclable type"
    },
    {
        "RecyclableID": 133,
        "Name": "test recyclable 8",
        "RecyclableType": "test recyclable type"
    },
    {
        "RecyclableID": 134,
        "Name": "test recyclable 34",
        "RecyclableType": "WASTE"
    },
    {
        "RecyclableID": 138,
        "Name": "recyclable thing",
        "RecyclableType": "WASTE"
    },
    {
        "RecyclableID": 139,
        "Name": "recyclable thing 2",
        "RecyclableType": "Ewaste"
    },
    {
        "RecyclableID": 153,
        "Name": "test recyclable 10",
        "RecyclableType": "Other"
    },
    {
        "RecyclableID": 154,
        "Name": "test recyclable 11",
        "RecyclableType": "Ewaste"
    },
    {
        "RecyclableID": 155,
        "Name": "test recyclable 123",
        "RecyclableType": "test recyclable type 2"
    },
    {
        "RecyclableID": 159,
        "Name": "some recyclable name",
        "RecyclableType": "CC"
    },
    {
        "RecyclableID": 161,
        "Name": "some recyclable name 2",
        "RecyclableType": "Ewaste"
    },
    {
        "RecyclableID": 162,
        "Name": "recyclable 2",
        "RecyclableType": "test recyclable type 2"
    },
    {
        "RecyclableID": 165,
        "Name": "test recyclable 15",
        "RecyclableType": "WASTE"
    },
    {
        "RecyclableID": 166,
        "Name": "test recyclable 18",
        "RecyclableType": "testing type"
    },
    {
        "RecyclableID": 167,
        "Name": "some recyclable name 23",
        "RecyclableType": "Ewaster"
    }
]

I have try to write a weird ajax option but it dont seem to working
with changing my option to checkbox
is it possible to create multiple checkbox automatic without me have to create 1 by 1 ?