Get Request

Send a get request to a location of choice

PropTypeDefault
url
string
none
const { RequestClient } = require('@cordxapp/request');
const { get } = new RequestClient();
 
const response = await get(url);
 
return console.log(response.message);

Last updated on