Reelify Developer Documentation
Everything you need to integrate video intelligence into your application.
Get Started →SDKs
Node.js
Stable
Server-side SDK for session management, feeds, analytics, and key management.
React StableDrop-in components, hooks, and providers for video feeds in React apps.
Go Coming SoonNative Go client with gRPC and REST transport.
Rust Coming SoonAsync-first Rust client for high-performance backends.
Python Coming SoonPythonic client with sync and async interfaces.
Swift Coming SoonNative iOS/macOS client with SwiftUI support.
Dart Coming SoonFlutter-ready SDK with offline support.
Kit (Svelte) Coming SoonSvelte components and stores for SvelteKit apps.
Quick Links
Get Started in 30 Seconds
npm install @reelify/sdk @reelify/sdk-react
import { ReelifyProvider, ReelifyFeed } from '@reelify/sdk-react';
function App() {
return (
<ReelifyProvider
apiKey="pk_test_your_publishable_key"
baseUrl="https://api.reelify.dev"
>
<div style={{ height: '100vh' }}>
<ReelifyFeed />
</div>
</ReelifyProvider>
);
}