Large Language Models

Anthropic

premium

Anthropic is an enterprise-grade large language models provider offering Chat Completion, Streaming Chat, Vision Analysis and 1 more through Aweb's unified API. It features full streaming support with premium-tier latency.

Try AnthropicOfficial docs

Specifications

CategoryLarge Language Models
Auth Typeapi_key
Latency Tierpremium
Streamingfull
Pricing Tierpremium
Reliabilitypremium
Qualitypremium
Base URLhttps://api.anthropic.com
SDK Package@anthropic-ai/sdk

Capabilities (4)

Chat Completionllm.chat
Score: 95DEFAULT
Streaming Chatllm.stream
Score: 95DEFAULT
Vision Analysisllm.vision
Score: 95DEFAULT
Structured Outputllm.structured
Score: 95DEFAULT

Quick start

Use Anthropic 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": "anthropic",
    "capability": "llm.chat",
    "input": { "prompt": "Hello from Anthropic!" }
  }'

TypeScript

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

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

const result = await alfred.execute({
  provider: 'anthropic',
  capability: 'llm.chat',
  input: { prompt: 'Hello from Anthropic!' },
});

console.log(result.output);

Related Large Language Models providers

OpenAI

premium tier

Groq

economy tier

Mistral AI

standard tier

Google Gemini

economy tier

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