Only in production, and never locally, did the super agent seem to make an additional GET request right before the POST request. This is similar to this unanswered question , however when using other software it is just a super agent.
Client code is a simple POST request:
superagent
.post('/api/v1/csr/whois')
.send({
someKey: someValue
})
.end(function(res){
log('Whois response:', res)
})
source
share