For Developers & Agents
The customer-event API for your product and AI stack.
Send customer events from your product with a single call. Brazebee turns them into health scores and routes the signals to the people who can act. REST API, TypeScript and PHP SDKs, and an MCP-friendly, backend-safe pattern.
What makes the Brazebee API different:
- API-first: POST an event from any backend, or use the TypeScript / PHP SDK
- One /v1/track endpoint, x-api-key auth, base URL api.brazebee.com/v1
- A standard customer-journey event library, or define your own event keys
- Backend-safe by design: your API key never touches the browser
- 10,000 requests/hour, rate-limit headers, predictable error codes
TypeScript & PHP SDKs today. REST works from any language.
Track an event
track.ts
import { BrazebeeClient } from 'brazebee-sdk';
const client = new BrazebeeClient({
apiKeyAuth: process.env.BRAZEBEE_API_KEY,
environment: 'https://api.brazebee.com'
});
await client.events.track({
company: { id: 'acme_corp', domain: 'acme.com' },
user: { id: 'user_123', email: 'jo@acme.com' },
eventKey: 'value_action_completed'
}); Endpoint
POST /v1/track
x-api-key auth
