BodyBodyContains the raw body submitted in a POST request. c.Body() string // curl -X POST http://localhost:8080 -d user=john app.Post("/", func(c *fiber.Ctx) { // Get raw body from POST request: c.Body() // user=john})