Serverless Compute

Cloudflare Workers

standard

Cloudflare Workers is an reliable serverless compute provider offering Serverless GPU through Aweb's unified API. It features none streaming support with premium-tier latency.

Try Cloudflare WorkersOfficial docs

Specifications

CategoryServerless Compute
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://api.cloudflare.com/client/v4
SDK Package

Capabilities (1)

Serverless GPUcompute.serverless
Score: 80

Quick start

Use Cloudflare Workers 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": "cloudflareworkers",
    "capability": "compute.serverless",
    "input": { "prompt": "Hello from Cloudflare Workers!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'cloudflareworkers',
  capability: 'compute.serverless',
  input: { prompt: 'Hello from Cloudflare Workers!' },
});

console.log(result.output);

Related Serverless Compute providers

Replicate

standard tier

RunPod

economy tier

Apify

standard tier

E2B

standard tier

Gretel AI

standard tier

Browserbase

standard tier

Getting started →API reference →All capabilities →All providers →