# Fast Token API Key Recharge

> Fast Token API Key Recharge is a paid API for AI agents from apitoken.clawwallet.cc, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Recharges a prepaid API key with credits for use against OpenAI-compatible Azure inference endpoints, paid via x402/USDC

## Facts

- Endpoint: POST https://apitoken.clawwallet.cc/api/recharge
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fast-token-api-key-recharge-1ca415c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zm9jXXf2_g8mDtl9csy6S

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 fast-token-api-key-recharge-1ca415c9 -d '<json body>'
```

Example prompt: Recharge my Fast Token prepaid API key with $5 worth of credits so I can keep making OpenAI-compatible inference calls.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically top up a prepaid API key for accessing OpenAI-compatible Azure inference endpoints via x402 crypto payments, especially in automated pipelines where LLM credit management needs to happen without human intervention.

## Known failure modes

- Payment amount below $0.10 minimum — rejected with validation error
- Payment amount above $1000 maximum — rejected with validation error
- x402 payment failure or USDC transfer rejected — credits not added
- Invalid or missing payment header — 402 Payment Required response
- Network or gateway timeout — uncertain whether credits were added

## How this service works

Fast Token is an x402-powered prepaid API key gateway for OpenAI-compatible Azure inference endpoints.

## Output

Returns a JSON object containing the key_id, confirmation that this is an api_key_recharge object, whether the key was reused, the USD amount charged, credits added, credits granted, and total credits remaining on the key.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount_usd": {
   "type": "number",
   "default": 1,
   "maximum": 1000,
   "minimum": 0.1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "key_id": "key_example",
  "object": "api_key_recharge",
  "reused": false,
  "amount_usd": 1,
  "credits_added": 100000,
  "credits_granted": 100000,
  "credits_remaining": 100000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fast-token-api-key-recharge-1ca415c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apitoken.clawwallet.cc](https://www.zero.xyz/host/apitoken.clawwallet.cc/llms.txt)
