Under a default configuration WebAPI won't serve static files for you. You need to either
- Set up a controller on the WebAPI endpoint that will get the files and return a
FileResult
- Configure static file handling middleware
9 times out of 10 you'll want the second one. Note that the default configuration for Microsoft's static file middleware is to serve static content out of wwwroot
so you'll probably need to put your images folder there.