2025 sparked some incredible conversations across our community 👩💻. Discover the highlights and see what’s ahead in 2026.
Forum Discussion
cloudlife
9 years agoHelpful | Level 6
How do I display the image data from the /2/files/download endpoint?
So I'm authorizing it properly, providing the correct headers in the proper format, retriving the response headers, and the data. But I can't seem to figure out how to display the information that co...
- 9 years agoThe /download call returns the raw binary data for the file. If it's an image and you won't to display it in an image tag, you'll need to either save it somewhere where you can serve it from a URL, or encode and format it as a base64 data URI, or perhaps using some of the newer blob/file functionality in modern browsers.
Greg-DB
Dropbox Community Moderator
9 years agoThe /download call returns the raw binary data for the file. If it's an image and you won't to display it in an image tag, you'll need to either save it somewhere where you can serve it from a URL, or encode and format it as a base64 data URI, or perhaps using some of the newer blob/file functionality in modern browsers.
- cloudlife9 years agoHelpful | Level 6Thanks! That's really what I needed was what kind of data it was, and what kind of solutions there were.
I had already seen a possible solution using blobs, but the solution required that I send a response header for blob which potentially along with other things didn't end up working.
The simple solution is: go install whatwg-fetch and use that for your api calls and when you get the response run:
URL.createObjectURL( response.blob() )
and set that result as the image src attribute.
Thanks again!
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!