Scheduling
Temporal Cloud
premiumTemporal Cloud is an enterprise-grade scheduling provider offering Workflow Execution, Activity Execution, Workflow Signals through Aweb's unified API. It features none streaming support with premium-tier latency.
Specifications
Capabilities (3)
Quick start
Use Temporal Cloud through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "temporal",
"capability": "scheduling.workflows",
"input": { "prompt": "Hello from Temporal Cloud!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'temporal',
capability: 'scheduling.workflows',
input: { prompt: 'Hello from Temporal Cloud!' },
});
console.log(result.output);