How to use it in a superfetch code

https://sourceb.in/3a10fd7abf
The code is above
My bot replies but no image

Hi @arnav7633,

The endpoint returns an Array. So you just need to update your code to use the first element of the Array:

.setImage(body[0].url)

instead of:

.setImage(body.url)

Hope that helps, Aden