What is an API Proxy?
An API proxy sits between your application and the upstream AI service. It adds a layer of control:
- Unified endpoint – No need to track different base URLs per model.
- Rate limiting – Clear daily quotas prevent surprise bills.
-
API key management – Use one simple key format (
gh-ds-...) across all requests. - Stable access – The proxy handles retries and keeps you connected even when upstream servers are under load.
The proxy endpoint we'll use today is https://api.gadgethumans.com/chat, which is compatible with the OpenAI chat completion format. That means you can drop it into existing code or tools.
Quick Start: Your First API Call
Prerequisites
- A DeepSeek API proxy key (format:
gh-ds-your-api-key-here) - Python 3.8+ and the
requestslibrary (pip install requests) - cURL (optional, for command-line testing)
Step 1: Set Up Your API Key
Your key looks like this:
gh-ds-aBcDeFgHiJkLmNoPqRsTuVwXyZ123456
Store it as an environment variable for security (don't hardcode it in your source code).
export DEEPSEEK_API_KEY="gh-ds-your-api-key-here"
Step 2: Make Your First Chat Request
Let's send a simple "Hello, world!" message to the proxy.
Python
import os
import requests
api_key = os.getenv("DEEPSEEK_API_KEY")
endpoint = "https://api.gadgethumans.com/chat"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
payload = {
"model": "deepseek-chat", # or "deepseek-reasoner" for reasoning model
"messages": [
{"role": "user", "content": "Hello! What can you do?"}
],
"max_tokens": 200,
"temperature": 0.7
}
response = requests.post(endpoint, headers=headers, json=payload)
data = response.json()
if response.status_code == 200:
print(data["choices"][0]["message"]["content"])
else:
print(f"Error {response.status_code}: {data}")
cURL
curl -X POST https://api.gadgethumans.com/chat \
-H "Authorization: Bearer $DEEPSEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hello! What can you do?"}],
"max_tokens": 200,
"temperature": 0.7
}'
That's it. The proxy handles authentication and forwards your request to the DeepSeek model. You get back a standard OpenAI-style response.
Understanding the API Endpoint and Models
The proxy endpoint supports all DeepSeek models. The most common are:
| model_name | Use case |
|---|---|
deepseek-chat |
General conversation, content generation, coding assistance |
deepseek-reasoner |
Complex reasoning, math, step-by-step logic |
The request format is identical to OpenAI's chat completions. This means you can reuse existing tooling, libraries like openai, or LangChain integrations – just swap the base URL and API key.
Note: Streaming is fully supported. Set "stream": true in the payload and use response.iter_lines() in Python.
Handling Errors and Rate Limits
The proxy returns standard HTTP status codes:
- 200 – Success
- 400 – Bad request (invalid payload, missing fields)
- 401 – Unauthorized (invalid or missing API key)
- 429 – Rate limit exceeded (daily quota reached)
- 500 – Internal proxy error (wait and retry)
When you hit the daily limit, the proxy responds with a 429 and a helpful message. For example:
{
"error": {
"message": "Rate limit exceeded. Upgrade your plan for higher daily quotas.",
"type": "rate_limit_error",
"param": null,
"code": "rate_limit"
}
}
Always check response.status_code and handle 429s by pausing and retrying after a delay (exponential backoff is best).
Advanced Usage: System Prompts and Function Calling
You can send system messages, few-shot examples, and even tool calls through the proxy. Here's a Python example with a custom system prompt:
import os
import requests
api_key = os.getenv("DEEPSEEK_API_KEY")
endpoint = "https://api.gadgethumans.com/chat"
payload = {
"model": "deepseek-chat",
"messages": [
{"role": "system", "content": "You are a helpful coding assistant. Answer concisely with code examples."},
{"role": "user", "content": "Write a Python function to reverse a string."}
],
"max_tokens": 300,
"temperature": 0.3
}
response = requests.post(endpoint, json=payload, headers={
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
})
print(response.json()["choices"][0]["message"]["content"])
The proxy passes through all parameters supported by the DeepSeek API, including top_p, frequency_penalty, presence_penalty, and stop sequences.
Best Practices for Production
- Always use environment variables for your API key. Never commit secrets to version control.
- Implement retry logic with exponential backoff for 429 and 5xx errors.
- Set sensible max_tokens – avoid open-ended responses unless you truly need them.
- Monitor your usage – track how many requests per day you're making to avoid surprises.
- Consider streaming for chat interfaces – it improves perceived latency.
Here's a robust Python function you can drop into any project:
import os
import time
import requests
from typing import Optional
def chat_deepseek(
messages: list,
model: str = "deepseek-chat",
max_tokens: int = 500,
temperature: float = 0.7,
max_retries: int = 3
) -> Optional[str]:
api_key = os.getenv("DEEPSEEK_API_KEY")
endpoint = "https://api.gadgethumans.com/chat"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
payload = {
"model": model,
"messages": messages,
"max_tokens": max_tokens,
"temperature": temperature
}
for attempt in range(max_retries):
response = requests.post(endpoint, headers=headers, json=payload)
if response.status_code == 200:
return response.json()["choices"][0]["message"]["content"]
elif response.status_code == 429:
wait = 2 ** attempt
time.sleep(wait)
else:
print(f"Error {response.status_code}: {response.text}")
break
return None
Pricing and Getting Started
The DeepSeek API proxy is available in two affordable paid tiers:
- Pro – $5/month – 10,000 requests per day. Perfect for individual developers, small projects, or testing.
- Biz – $15/month – 100,000 requests per day. Designed for teams, production applications, and high-volume usage.
Both tiers use the same endpoint and API key format. There are no hidden per-token charges – just a flat daily request allowance. You can upgrade or downgrade at any time.
👉 Get your API key and choose a plan at gadgetshumans.com 👈
After purchasing, you'll receive your key immediately (format: gh-ds-...). No approval queue, no credit card required for the first 24 hours of testing.
Wrap-Up
You now have everything you need to integrate the DeepSeek API into your projects using a reliable, developer-friendly proxy. The setup is minimal, the pricing is predictable, and the API is fully compatible with the OpenAI ecosystem.
- Use
https://api.gadgethumans.com/chatas your base endpoint. - Authenticate with
Authorization: Bearer gh-ds-your-key. - Pick
deepseek-chatordeepseek-reasoneras your model. - Handle 429s gracefully and retry.
Start building today – the proxy is ready for you.
June 08, 2026
Top comments (0)