Sending images from Wix database to an app through http request

And if part of the image are stored in your collection as full URL and others as wix:image//, you should add a condition:

//...
 items = items.map(e=> {
if(e.image.startsWith('wix')) {
e.image =`https://static.wixstatic.com/media/${e.image.split('/')[3]}`;
}
return e;
});
//..