Overview
Documentation
- Overview
- Usage Caps
- Errors
- Deprecations
Documentation
Everything you need to integrate with the ElliotGate API.
Quick Start
Get up and running with ElliotGate in minutes.
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.