<!DOCTYPE html>
<html>
<head>
<title>test1</title>
</head>
<body>
<h2>test1</h2>
<script type="module">
async function loadImage() {
const satData = await fetch('/r/sat/1252201400444387').then(r => r.json());
if (satData.ids && satData.ids.length > 0) {
const img = document.createElement('img');
img.src = `/content/${satData.ids[0]}`;
img.style.width = '100px';
img.style.height = '100px';
document.body.append(img);
}
}
loadImage();
</script>
</body>
</html>