Building with AI shouldn't cost you a dime to start. Here's how to get 100K free tokens and access 6 different AI models through a single API — no credit card required.
What You Get for Free
100,000 tokens to test any of 6 models:
| Model | Best For |
|---|---|
| dubhe-fast | General chat, text generation |
| dubhe-code | Programming, debugging |
| dubhe-agent | Function calling, tool use |
| dubhe-plus | Long context (up to 1M tokens) |
| dubhe-vision | Image analysis, OCR |
| dubhe-reasoning | Complex problem-solving |
Getting Started in 30 Seconds
Step 1: Go to dubhehub.com and click "Get Started"
Step 2: Sign up with your email — no credit card needed
Step 3: Create an API key from your dashboard
Step 4: Start coding:
import openai
client = openai.OpenAI(
base_url="https://dubhehub.com/v1",
api_key="your-key-here"
)
response = client.chat.completions.create(
model="dubhe-fast",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Why Start Here?
- One API key for 6 models — no juggling multiple providers
- Pay only if you scale — 100K free tokens, then pay-as-you-go from $0.30/M tokens
- OpenAI-compatible — same SDK, just change the base URL
- No credit card — really. Just sign up and build.
The free tier is enough to build a prototype, test different models, and decide what works for your use case. When you're ready to scale, your API key and code stay exactly the same.
Top comments (0)