A monthly subscription with a daily reset quota. Perfect for developers and individuals seeking reliable personal AI access.
Unlock higher performance and more configuration than developer plans.
Grow with our custom AI solutions and get discounts up to 50% off.
Try out API models before you integrate.
OpenAI-compatible APIs, simply update your endpoints.
import requests
url = "https://api.atlascloud.ai/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
"model": "deepseek-ai/DeepSeek-V3-0324",
"messages": [
{
"role": "user",
"content": "what does https mean?"
}
}],
"temperature": 0.7,
"systemPrompt": "",
"max_tokens": 1024,
"top_p": 0.9,
"top_k": 50,
"repetition_penalty": 1.1
}
response = requests.post(url, headers=headers, json=data)
print(response.json())