curl
Works with any API Master key
export JATEVO_API_KEY=sk-jvo-your-key-here
curl https://api.jatevo.ai/v1/chat/completions \
-H "Authorization: Bearer $JATEVO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "cerebras/gemma-4-31b",
"messages": [
{"role": "user", "content": "Say hello from Jatevo API Master."}
],
"max_tokens": 120
}'