Claude
Skills
Sign in
โ† Back

claude

Included with Lifetime
$97 forever

Anthropic Claude integration. Chat with Claude models via Anthropic API.

Backend & APIs

What this skill does


# Claude ๐Ÿง 

Anthropic Claude integration.

## Setup

```bash
export ANTHROPIC_API_KEY="sk-ant-..."
```

## Features

- Chat with Claude (Opus, Sonnet, Haiku)
- Long context support (200K tokens)
- Vision capabilities
- Tool use

## Usage Examples

```
"Ask Claude: Analyze this code"
"Use Claude to summarize this document"
```

## API Reference

```bash
curl -s https://api.anthropic.com/v1/messages \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{"model":"claude-sonnet-4-20250514","max_tokens":1024,"messages":[{"role":"user","content":"Hello"}]}'
```

Related in Backend & APIs