axios.get('/your-url', { params: { yourParam: 'yourValue', }, }) .then((response) => { const { data } = response; }) .catch((error) => { console.log(error); });