ну вот например код через axios
var axios = require('axios')
const data = {}
data['price_from'] = 0.5
data['price_to'] = 2
axios.post('https://my_endpoint', JSON.stringify(data), {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
}
})
.then(function (response) {
console.log(response.data.headers['Content-Type'])
console.log(
response.data)
})
.catch(function (error) {
console.log(error)
})