100% OpenAI SDK Compatible

Build with Outcry AI

Access our powerful Chat and Video Generation APIs. Get started with $10 in free credits. Drop-in replacement for OpenAI—just change the base URL.

Chat API

AI-powered conversations with activist expertise. Theory of Change positioning support.

Video Generation

Create AI videos with Sora 2. Generate stunning 4-12 second videos from text prompts.

OpenAI Compatible

Works with OpenAI SDK. Just change your baseURL and start building immediately.

Quick Start

Drop-in replacement for OpenAI. Change one line of code.

Chat API Example
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'oc_live_YOUR_KEY_HERE',
  baseURL: 'https://api.outcryai.com/v1'  // Only difference!
});

const response = await client.chat.completions.create({
  model: 'outcry',
  messages: [
    { role: 'user', content: 'How do I organize a climate strike?' }
  ]
});

console.log(response.choices[0].message.content);
Video API Example
const response = await fetch('https://api.outcryai.com/v1/videos', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer oc_live_YOUR_KEY_HERE'
  },
  body: JSON.stringify({
    model: 'sora-2',
    prompt: 'Activists marching through city streets at golden hour',
    seconds: '4',
    size: '1280x720'
  })
});

const video = await response.json();
console.log('Video ID:', video.id);

Why Outcry AI?

$10 Free Credits

Every new developer account gets $10 in free API credits to get started.

Pay-As-You-Go

Simple prepaid pricing. Chat from $0.01/message. Videos from $0.70 for 4 seconds.

OpenAI SDK Support

Works with official OpenAI JavaScript and Python SDKs. No new library to learn.

Activist-Focused AI

Specialized knowledge in organizing, social movements, and Theory of Change frameworks.

Ready to Build?

Sign up now and get instant access to our API with $10 in free credits.