data to curl request code example
Example 1: curl what is --data
// Ex: axios post
const options = {
method: 'POST',
headers: {},
data: JSON.stringify({}),
url: '',
};
const something = await axios.post(options);
Example 2: curl pass data in request
curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data