# Jatevo AI Credits Top-Up

> Jatevo AI Credits Top-Up is a paid API for AI agents from jatevo.ai, paid per call via x402, $1/call, status down (last checked 2026-09-15).

Add credits to a Jatevo AI developer account by specifying an amount, currency, and account ID

## Facts

- Endpoint: POST https://jatevo.ai/api/privy-developer/credits/topup
- Price: $1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jatevo-ai-7a8733da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cm2H1sssmA0P_Kl2g7Bmn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability jatevo-ai-7a8733da -d '<json body>'
```

Example prompt: Top up my Jatevo AI developer account (account ID dev-abc123) with 50 USDC so I can keep using the inference endpoints.

## When to prefer this

Use this endpoint when an AI agent or developer needs to programmatically replenish credits on a Jatevo AI developer account, enabling continued access to Jatevo-hosted LLM inference, web search, or research endpoints. Prefer this over manual top-up flows when automating billing or when a workflow detects low credit balance.

## Known failure modes

- Invalid or missing accountId returns an error
- Unsupported currency value causes a validation failure
- Amount less than or equal to zero is rejected
- Insufficient payment or payment protocol failure returns an error
- Account not found returns a 404 or similar error

## Output

A confirmation response indicating the top-up was processed, reflecting the new or updated credit balance for the specified account in the given currency amount.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amount",
  "currency",
  "accountId"
 ],
 "properties": {
  "amount": {
   "type": "number"
  },
  "currency": {
   "type": "string"
  },
  "accountId": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jatevo-ai-7a8733da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jatevo.ai](https://www.zero.xyz/host/jatevo.ai/llms.txt)
