Je ne reçois pas de req.

You need to use a parser, To parse the data from req
You can use this middleware to do that
app.use(express.json({extended: true})
Sasuke