Skip to content
Seedance 2.0 Face is here — generate video from real-person reference photos.Try it now
Overview

Documentation

Everything you need to integrate with the ElliotGate API.

Quick Start

Get up and running with ElliotGate in minutes.

1. Get Your API Key

Sign up and get your API key from the dashboard.

Go to Dashboard

2. Make Your First Request

Use the OpenAI-compatible endpoint to make your first API call.

curl https://api.elliotgate.com/v1/chat/completions \
  -H "Authorization: Bearer sk-omg-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4o",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

API Reference

ElliotGate provides OpenAI and Anthropic compatible APIs.

API Reference

SDK Compatibility

ElliotGate is fully compatible with official OpenAI SDKs. Just change the base URL and API key.

Python

pip install openai

from openai import OpenAI
client = OpenAI(
    base_url="https://api.elliotgate.com/v1",
    api_key="sk-omg-...",
)

Node.js

npm install openai

import OpenAI from 'openai';
const client = new OpenAI({
  baseURL: 'https://api.elliotgate.com/v1',
  apiKey: 'sk-omg-...',
});

Need Help?

Contact us at [email protected] for any questions or issues.