Product images and data in a single api call

System Information
  • Strapi Version: 4.0.0
  • Operating System: Debian Linux
  • Database: Default SqLite
  • Node Version: 14.18.2
  • NPM Version: 6.14.15
  • Yarn Version: 1.22.17

I just started using strapi and wanted to know how should i get my products list with images of the products and show them in cards.It is a simple e-commerce app with products,description and images.I have uploaded images in media library and now there are two api’s
1./api/products : to get the product info(title,description etc)
2/api/upload/files : to get the product images.

I am using React and map function to map over products data and populate them bootstrap cards.Now,i am just mapping over data from 1st api(/api/products) and getting product details.I just want to understand how to map over both the api’s and get both product details and image and populate them in cards ?