Hello,
You have two options to resolve this. In the HTML code that your application sends to the API either
1/ Use a full URL:
src="http://mgcdiagnostics.com/images/made/images/products/UltimaPFXwithGasChromatography_frontview_450_325_c1.jpg"
instead of
src="/images/made/images/products/UltimaPFXwithGasChromatography_frontview_450_325_c1.jpg"
2/ Or you can add the <base> element to <head>:
<head>
<base href="http://mgcdiagnostics.com">
...