Bifrost Documentation
One API for every social and creator platform.
Introduction
Bifrost is unified api for social networks, creator platforms, and marketing systems. These docs cover installation, core concepts, and the full API reference.
Quickstart
Install the SDK and make your first request:
npm install @helpingbrains/bifrost
import { Bifrost } from "@helpingbrains/bifrost";
const client = new Bifrost({ apiKey: process.env.HB_API_KEY });
const result = await client.ping();Authentication
Authenticate with an API key from your HelpingBrains dashboard. Pass it via theAuthorizationheader as a Bearer token.
Core Concepts
- Unified Social API. A first-class capability in Bifrost.
- OAuth Management. A first-class capability in Bifrost.
- Webhooks. A first-class capability in Bifrost.
- SDKs. A first-class capability in Bifrost.
- Analytics. A first-class capability in Bifrost.
API Reference
The Bifrost REST API is organized around predictable, resource-oriented URLs and returns JSON responses. Full endpoint reference coming soon.
