Is it conceptually right to create a rest API using the post for every request?

Advertisements I’m developing a rest API that, once you’ve bought a paid plan and received an apiKey, you can create a maximum of a certain number of apps depending on the paid plan chosen. I’m using node.js and to handle requests I’m using HTTPS module like this: https.createServer(options, (req, res) => { res.writeHead(200); req.on(‘data’, function… Read More Is it conceptually right to create a rest API using the post for every request?