SyntaxFix
Write A Post
Hire A Developer
Questions
There many methods to send raw data with a post request. I personally like this one.
post
const url = "your url" const data = {key: value} const headers = { "Content-Type": "application/json" } axios.post(url, data, headers)