Venice API Playground
Test your CheapTokens key.
No key loaded
Request
Output
Ready.
Code
curl https://api.venice.ai/api/v1/chat/completions \
-H "Authorization: Bearer $VENICE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "default",
"messages": [
{
"role": "system",
"content": "You are a concise assistant."
},
{
"role": "user",
"content": "Write a short checklist for testing a new API key."
}
],
"temperature": 0.7,
"max_completion_tokens": 1024,
"stream": true,
"venice_parameters": {
"include_venice_system_prompt": true
}
}'