Cant send request to moralis

let clientServerOptions = {
    uri: "https://deep-index.moralis.io/api/v2/0x28c8D8709a341713bDdb3f555DE4Ef4448e064dd/nft/0x742FBe84557A978c8C06Af20375A17bd2031F036?chain=Eth&format=decimal",
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'X-API-KEY': 'XXXXXXXXXXXXXXXXXX'
    }
}


request(clientServerOptions, (error, response) => {

    console.log(error)

    console.log(response.statusMessage);
    console.log(response.statusCode);
});

ERROR:

null     
Not Found
404      

Can you add more details, what sort of app or framework are you using?

Also you need to be making GET requests to that endpoint, not POST.