Transactional

Anthropic

AI safety company creating Claude, focused on helpful and harmless AI

INTEGRATION

Quick Start

import { Transactional } from '@usetransactional/node';

const client = new Transactional(process.env.TRANSACTIONAL_API_KEY);

const response = await client.ai.chat.completions.create({
  provider: 'anthropic',
  model: 'claude-opus-4-20250514',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'Hello!' }
  ]
});

console.log(response.choices[0].message.content);

Ready to Use Anthropic?

Get started with a free account. No credit card required.