GET /v1/discounts/eligible-models
Returns a list of all models that are eligible for the daily rotating discount program.
Response
Array of model IDs that can receive discounts.
Array of model IDs currently receiving discounts.
Examples
Get Eligible Models
import requests
response = requests.get(
"https://api.voidai.app/v1/discounts/eligible-models",
headers={"Authorization": "Bearer sk-voidai-your_key_here"}
)
data = response.json()
print("Models eligible for discounts:")
for model in data["models"]:
is_discounted = model in data["current_discounted"]
status = " (DISCOUNTED NOW)" if is_discounted else ""
print(f" - {model}{status}")
Response Example
{
"models": [
"gpt-4",
"gpt-4o",
"claude-3-5-sonnet",
"claude-3-opus",
"gemini-2.0-flash",
"gemini-1.5-pro",
"mistral-large"
],
"current_discounted": [
"claude-3-5-sonnet",
"gpt-4o"
]
}
How Discounts Work
Daily Rotation
Discounts rotate daily at 6 PM CET. Different models receive discounts each day.
Automatic Application
When you use a discounted model, the discount is automatically applied to your request cost.
Check Your Discounts
Use My Discounts to see your currently active discounts and time remaining.
The discount percentage varies by model and promotion. Check My Discounts to see the exact discount amounts.