Using the Jenvu API endpoint

OpenAI-compatible chat completions endpoint you can call from any client.

Updated September 18, 2026

Jenvu exposes an OpenAI-compatible endpoint, so most existing SDKs and tools work by simply changing the base URL and key.

Base URL

https://jenvu.com/api/public/v1

Example request

curl https://jenvu.com/api/public/v1/chat/completions \
  -H "Authorization: Bearer YOUR_JENVU_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "jenvu-pro",
    "messages": [{"role": "user", "content": "Give me the XAU/USD bias"}]
  }'

Available models

  • jenvu-fast — quick conversational replies.
  • jenvu-pro — deep reasoning and analysis.
  • jenvu-vision — chart and image analysis.

Response details

  • Standard OpenAI-style choices and usage fields.
  • An extra 'jenvu' object with your daily token limit, tokens used today and plan.
  • GET /v1/models lists the available model aliases.

Errors you may see

  • 401 — missing or invalid key.
  • 402 — wallet balance too low.
  • 403 — your plan does not include API access.
  • 429 — daily token limit reached; it resets at 00:00 UTC.
Note
Every API call counts toward the same daily token allowance and wallet as the extension, and appears on the Usage page.
Was this article helpful?
Your feedback helps us improve.
Related articles
Back to Plans, Credits & Billing