Openflip Developer Platform
Ship AI features on Openflip without writing a backend.
One API for AI chat bots, AI-generated push notifications, and “Sign in with Openflip” OAuth. Bring an API key, get a working integration in minutes.
bash / send a push in one call
curl https://api.openflip.dev/api/public/v1/notifications \
-H "Authorization: Bearer ofk_live_..." \
-H "Content-Type: application/json" \
-d '{
"prompt": "Announce a 20% flash sale ending tonight",
"tone": "urgent",
"audience": "all"
}'AI Bots
Define a bot with a system prompt, then chat to it from any client. We handle the model, streaming, and history.
POST /v1/bots/{id}/chat
{ "messages": [{ "role": "user",
"content": "hello" }] }AI Push
Send a natural-language prompt. We generate the title & body, then deliver web-push to your subscribers.
POST /v1/notifications
{ "prompt": "New reply on your listing",
"tone": "friendly" }Sign in with Openflip
Standards-based OAuth 2.0. Let your users bring their Openflip identity — no separate account required.
GET /oauth/authorize? client_id=...& redirect_uri=...& scope=openid+email+profile
Built for developers
- Scoped API keysRotate & revoke keys per app. Shown once, hashed at rest, prefixed for easy identification.
- Managed AIBacked by Lovable AI Gateway — no separate OpenAI / Anthropic account or billing setup.
- Web push out of the boxWe host VAPID keys and the delivery pipeline. You call one endpoint.
- OAuth done rightPKCE, discovery, JWKS, dynamic client registration — via the platform's managed OAuth server.