Integrations
One API. Drop-in OpenAI compatibility. Connect with your favorite tools, frameworks, and platforms.
API Base URL
https://api.ecopool.ai/v1Replace your OpenAI base URL with this endpoint. All other parameters remain the same.
Supported Apps
Works with every OpenAI-compatible tool out of the box
OpenClaw
agentPersonal AI assistant for WhatsApp, Telegram, Discord, Slack, and more. Add the ECOPOOL skill from ClawHub.
AutoGen 🔥
agentMicrosoft's multi-agent framework. Configure OpenAI-compatible LLM config with ECOPOOL's endpoint.
CrewAI 🔥
agentBuild AI agent teams. Use ECOPOOL as the LLM backend via OpenAI-compatible configuration.
Hermes Agent 🔥
agentLatest open-source AI agent framework with native tool use and function calling. Connect via OpenAI-compatible API with ECOPOOL models.
Quick Start
Copy, paste, and start building in under a minute
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecopool.ai/v1",
api_key="your-ecopool-api-key",
)
response = client.chat.completions.create(
model="llama-3.1-8b-instruct",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)API Endpoints
Full OpenAI-compatible API surface
/v1/chat/completionsText & vision chat with streaming
/v1/images/generationsImage generation from text
/v1/audio/transcriptionsSpeech-to-text (Whisper)
/v1/audio/speechText-to-speech synthesis
/v1/video/generationsText-to-video (async)
/v1/embeddingsText embeddings
/v1/modelsList available models
/v1/completionsLegacy text completions
/v1/video/jobs/{id}Video job status