Integrations

One API. Drop-in OpenAI compatibility. Connect with your favorite tools, frameworks, and platforms.

API Base URL

https://api.ecopool.ai/v1

Replace 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

agent

Personal AI assistant for WhatsApp, Telegram, Discord, Slack, and more. Add the ECOPOOL skill from ClawHub.

AG

AutoGen 🔥

agent

Microsoft's multi-agent framework. Configure OpenAI-compatible LLM config with ECOPOOL's endpoint.

CrewAI 🔥

agent

Build AI agent teams. Use ECOPOOL as the LLM backend via OpenAI-compatible configuration.

Hermes Agent 🔥

agent

Latest 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

Python (OpenAI SDK)
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

POST/v1/chat/completions

Text & vision chat with streaming

POST/v1/images/generations

Image generation from text

POST/v1/audio/transcriptions

Speech-to-text (Whisper)

POST/v1/audio/speech

Text-to-speech synthesis

POST/v1/video/generations

Text-to-video (async)

POST/v1/embeddings

Text embeddings

GET/v1/models

List available models

POST/v1/completions

Legacy text completions

GET/v1/video/jobs/{id}

Video job status

Ready to integrate?

Get your API key and start making requests in under a minute.