Objectify

Operational

Objects Platform API

Multi-tenant backend for your applications. Database, authentication, file storage, AI, and realtime — all on Cloudflare's edge network.

Database
D1 sharded SQL
Auth
JWT, OAuth, MFA
Storage
R2 file system
AI
Workers AI models
Realtime
WebSocket subs
Webhooks
Event callbacks

Quick Start

# List object types
curl https://api.objectify.cloud/v1/object-types \
  -H "Authorization: Bearer YOUR_API_KEY"

# Upload a file
curl https://api.objectify.cloud/v1/files/upload \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "file=@photo.jpg" -F "access=public"

# Chat with AI
curl https://api.objectify.cloud/v1/ai/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"message":"Hello"}'