Quickstart Guide
1Create an account
Sign up for a ReelLink account to get your API keys and access the dashboard.
Sign up here →2Install the script
Add the ReelLink SDK to your project.
npm install @reellink/sdk
3Configure
Initialize the SDK with your public key. Do not share your secret key.
import { ReelLink } from '@reellink/sdk';
const reel = new ReelLink({
projectId: 'YOUR_PROJECT_ID'
});
const reel = new ReelLink({
projectId: 'YOUR_PROJECT_ID'
});