High-performance AI API powered by Cloudflare Workers & Pages Functions
/
API documentation and status
/health
Health check endpoint with deployment info
{
"status": "healthy",
"service": "pauhu-unified-api",
"version": "1.0.0",
"timestamp": 1731801600.0
}
/status
Deployment status and features (Pages Functions only)
/chat
Chat with AI using Cloudflare Workers AI
{
"message": "Hello, how are you?",
"mode": "standard" // optional
}
Response:
{
"response": "I'm doing well, thank you!",
"mode": "standard",
"timestamp": 1731801600.0
}
Cloudflare Workers AI with Llama 2 7B model
Deployed across 300+ Cloudflare locations
Pages Functions: Free hosting & auto-scaling
Cold start <50ms, avg response <100ms
curl -X POST https://pauhu-unified-api.pauhu.workers.dev/chat \
-H "Content-Type: application/json" \
-d '{"message": "Hello from Pauhu!"}'
curl https://pauhu-unified-api.pauhu.workers.dev/health