如何获取WSDL API?

I am trying to fetch one of the links below. I got the message from the council that says Failed to Fetch. So, could you please guide me on how I can fetch the link?

APIs Links:

https://www.tcitips.com/api/TCi_PlaceOrder.cfc?wsdl

https://www.tcitips.com/api/TCi_PlaceOrder.wsdl

This is my work

fetch ('https://www.tcitips.com/api/TCi_searchSizeTIPS/wsdl')
.then(result => {
    console.log(result);
    return result.json();
}).then(data =>{
    console.log(data); 
}).catch (error => console.log (error));