Add Instagram galleries to your React projects with our drop-in widget, or build your own UI with a JSON feed.
Widget Component
The simplest way to get started is by using our official React Instagram widget component. This is a lightweight wrapper around our core web component, and let’s you drop an embedded widget right into your React code.
It has zero dependencies and is fully typed. Compatible with Next, Astro, Gatsby, Remix, etc.
Installation
First create a widget feed and copy the feedId from your widget embed code. Next, install with your package manager of choice.
After installing, simply import the component and use as normal.
Configuration
The Behold React component has a single required property: feedId, which can be found by opening your widget feed in the Behold dashboard and clicking on Embed Code.
All configuration and customization is handled in the Behold admin. When you make changes there it will automatically update your widget, no code modifications required. Because of browser caching, changes can take a minute or two to show up. Clearing your cache and incognito/private windows will help.
Load event
You can optionally pass a callback function to the onLoad property, which will fire after initial render.
A note about SSR
This component relies on client-only APIs and won’t be pre-rendered by SSR or SSG. That means there will be a moment before it renders where its height will be 0px. You can prevent layout shifts this may cause by applying dimensions to a container element with CSS.
Custom implementation
To build your own custom UI, first create a JSON feed. Once you have a feed URL, just GET it and you’re off to the races.
Below is a simple, unstyled example to get you started. The full list of fields/data that are available can be found in our JSON feed docs.
Types
As a convenience we’ve published types for our JSON feeds. You can see an example of usage in the TS demo above.