πŸš€ Get Started in 5 Minutes

Quick Start FlowerWolf

Whether you're a developer or a beginner, you'll find the perfect way to integrate here.
Supports OpenAI SDK, REST API, and browser direct calls β€” choose any of the three.

Free Sign Up β†’ View Integration Examples

πŸ“– First, Understand What This Is

🌐 What We Are

FlowerWolf is an AI Model Aggregation Platform β€” we integrate the best AI models globally (OpenAI, Google, Anthropic, domestic models, and more) into one place. With just one API Key, you can call all models.

πŸ’° Why Use Us

Official channels are expensive, top-ups are cumbersome, and customer support is slow. We offer simpler integration, more stable service, and transparent pricing. Sign up and get trial credits β€” try before you decide.

🎯 What Can You Do Here

Choose the method that suits you best

πŸ€–

Call AI Models

Use the ready-made OpenAI SDK β€” integrate in just 2 lines of code, and access top global models directly.

Easiest
πŸ”Œ

REST API Call

Direct HTTP requests β€” no language restrictions, works with Python/Java/JS/Shell.

Most Universal
πŸ’»

Self-Deploy Models

Have GPUs and servers? We provide OpenClaw and Hermes deployment tools to run models yourself.

Full Control
πŸ“¦

Compute Rental

No GPU? We have H100/A100 compute available for rent, pay-per-use, flexible.

Pay-as-you-go

πŸ’» Integration Examples (Copy & Use)

Supports OpenAI official SDK β€” just change two lines of config

Copy
import openai
openai.api_key = "your-flowerwolf-api-key"
openai.base_url = "https://api.flowerwolf.net/v1"

# That's it β€” start using it!
response = openai.ChatCompletion.create(
    model="gpt-4o",
    messages=[{"role":"user","content":"Hello"}]
)
print(response.choices[0].message.content)

⚠️ Replace api_key with your key obtained after registering on FlowerWolf, and set base_url to our endpoint. Model names are the same as OpenAI's official ones β€” no code changes needed.

Copy
curl https://api.flowerwolf.net/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer *** \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role":"user","content":"Hello"}]
  }'

⚠️ Just replace your-flowerwolf-api-key. Supported models include gpt-4o, claude-3-5-sonnet, gemini-1.5-pro, etc.

Copy
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'your-flowerwolf-api-key',
  baseURL: 'https://api.flowerwolf.net/v1',
});

const response = await client.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'Hello' }],
});
console.log(response.choices[0].message.content);

⚠️ Supports Node.js 18+. API is fully compatible with OpenAI β€” just change the URL and API key.

πŸ€– Supported Model List

One API key to call all models

Model Type Provider Context Use Cases
GPT-4oMultimodalOpenAI128KAll-purpose Assistant
GPT-4o-miniMultimodalOpenAI128KFast Response
Claude 3.5 SonnetPopularMultimodalAnthropic200KCoding/Writing
Claude Opus 4MultimodalAnthropic200KComplex Reasoning
Gemini 1.5 ProMultimodalGoogle1MLong Text Processing
Gemini 1.5 FlashMultimodalGoogle1MFast/Low Cost
DeepSeek-V2.5LanguageDomestic128KCost-effective Choice
Qwen2.5-72BLanguageDomestic128KChinese Scenarios

More models being added continuously β€” full list available in the console after registration

πŸ–₯️ Want to Self-Deploy? Done in Two Steps

Have your own GPU and servers? Want to run models yourself? We can help

OpenClaw Deployment Tool

Supports one-click deployment of OpenWebUI, Ollama, and other open-source UIs, with built-in model management and API endpoints.

  • Open source and free, active community
  • Supports 100+ open-source models
  • One-click deployment to your server
  • Built-in web interface and API
View OpenClaw Deployment Guide β†’

Hermes Agent Framework

Our proprietary AI Agent runtime framework, supporting multi-model switching, long-term memory, and tool calling.

  • Supports all mainstream models
  • Multi-model concurrent inference
  • Supports Feishu/WeChat/Telegram integration
  • Customizable tools and workflows
View Hermes Deployment Guide β†’

πŸ“Œ Deployment Steps

1

Register an Account

Click "Login" in the top right, register with your email. You'll automatically receive trial credits β€” no top-up needed to try.

2

Get Your API Key

After logging in, go to "Console β†’ API Keys" and copy your key. Format is similar to fw-xxxxxxxxxxxx.

3

Copy the Code, Replace the Key

Copy the example code above, replace your-flowerwolf-api-key with your actual key β€” just 2 lines of code.

4

Start Using!

Run the code β€” when you see the AI's response, it's connected. The console lets you check usage, view bills, and switch models.

❓ FAQ

No technical background β€” can I use this?
Absolutely. The easiest way is to call directly from the browser (no coding needed), or use our web console. You only need three steps: register, get your key, and copy-paste the example code β€” then you can use top-tier AI.
How much credit do I get after signing up? What can I do with it?
New users get free trial credits and can call mainstream models like GPT-4o and Claude several times each. Test with credits first, top up when satisfied.
Can I use my OpenAI API Key directly?
Yes. FlowerWolf is fully compatible with the OpenAI SDK format β€” you only need to change the base_url to our address, replace the api_key with ours, and keep the model names. No code changes needed.
How does billing work? Is it cheaper than official?
Charged by actual usage, different models have different unit prices. Pricing is transparent β€” you can see usage and costs in real-time on the console. We strive for better-than-official pricing; see the Token Market page for details.
I have my own GPU β€” can I self-deploy models?
Yes. We provide two deployment solutions: OpenClaw and Hermes, supporting one-click deployment to your server. OpenClaw is ideal for open-source models (like Llama, Mistral), while Hermes is suited for commercial models (like GPT-4, Claude).
What if my API call fails?
Common causes: β‘  Key expired or invalid β†’ regenerate in console; β‘‘ Credits exhausted β†’ top up and retry; β‘’ Network issues β†’ confirm you can reach api.flowerwolf.net; β‘£ Unsupported model β†’ use a supported model name. Contact support if issues persist.