engyLive Kimi K3 now supports image input and 1M context

Agent API

Issue a read token so an agent can read your account — current balance, spending/usage, and the live model catalog. Read-only: it can see these details but cannot spend, and is separate from your sk-engy- inference key. Authenticate with the token (rk-engy-…).

1. Issue a read token

Go to Dashboard → Account tokens, create a token, and copy it (shown once).

2. Call the API

curl -H 'Authorization: Bearer rk-engy-…' \
  https://engy.ai/api/v1/balance

Responses are { "data": …, "meta": … }; errors are { "error": { "code", "message" } }. Money is integer micro-USD (1 USD = 1,000,000); a _usd string is included too.

3. Endpoints

  • GET /api/v1/balance — balance + available (post-holds).
  • GET /api/v1/usage?days=7|30&model=… — requests + spend by day and model.
  • GET /api/v1/models — live models with per-1k pricing and context limits.

4. Machine-readable

Rate limit: 120 requests per minute per token.