Skip to content

Instantly share code, notes, and snippets.

@jazibobs
Last active April 26, 2026 15:42
Show Gist options
  • Select an option

  • Save jazibobs/c740da6a067aee19840c to your computer and use it in GitHub Desktop.

Select an option

Save jazibobs/c740da6a067aee19840c to your computer and use it in GitHub Desktop.
Get a link to the image file from an instagram url
<!--
Use a standard instagram url such as https://www.instagram.com/p/BB70H3bMEH-/
at the end of the link append media/?size=THE_IMAGE_SIZE_YOU_WANT
-->
<!-- Get the image file as a thumbnail -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=t" alt="Instagram Image Thumbnail">
<!-- Get the medium image file -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=m" alt="Instagram Image Medium">
<!-- Get the large image file -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=l" alt="Instagram Image Large">
@Luunii

Luunii commented Apr 26, 2026

Copy link
Copy Markdown

How does it work with multiple pictures on one post ie „img_index=“ suffix?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment