API Access

Generate and manage API keys for external integrations.

Security Warning

Your API keys carry significant privileges. Do not share them in public repositories or client-side code. Use environment variables for production environments.

Active API Keys

Production App

sk_live_••••••••••••4242

Usage

1,240 req/mo

Development Testing

sk_test_••••••••••••8888

Usage

12 req/mo

Quick Integration

Node.js (AICraft SDK)
const { AICraft } = require('@aicraft/sdk');

const client = new AICraft({ 
  apiKey: process.env.AICRAFT_API_KEY 
});

await client.chat.completions.create({
  messages: [{ role: 'user', content: 'Hello AI!' }],
  model: 'flux-1-pro'
});