Authentication
Clerk
standardClerk is an reliable authentication provider offering OAuth Authentication, Single Sign-On, Multi-Factor Auth and 2 more through Aweb's unified API. It features none streaming support with premium-tier latency.
Specifications
Capabilities (5)
Quick start
Use Clerk 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": "clerk",
"capability": "auth.oauth",
"input": { "prompt": "Hello from Clerk!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'clerk',
capability: 'auth.oauth',
input: { prompt: 'Hello from Clerk!' },
});
console.log(result.output);