# Fast Token API Key Purchase

> Fast Token API Key Purchase 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).

Purchases a prepaid API key (with credits) granting access to OpenAI-compatible Azure inference endpoints, paid via x402/USDC.

## Facts

- Endpoint: POST https://apitoken.clawwallet.cc/api/purchase
- 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-purchase-6d8edc65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qF2grsKa0OYNLZwTwV-c_

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-purchase-6d8edc65 -d '<json body>'
```

Example prompt: Buy me a Fast Token prepaid API key with $5 of credits and label it 'my-agent-project' so I can use it with OpenAI-compatible chat completions.

## When to prefer this

Choose this endpoint when an AI agent needs to programmatically acquire a prepaid API key for OpenAI-compatible inference (chat completions, embeddings) and wants to pay using USDC via the x402 protocol rather than managing a subscription or monthly billing account. Ideal for pay-as-you-go or ephemeral agent workflows that need immediate, credit-limited AI API access.

## Known failure modes

- Payment below minimum $0.10 or above $1000 USD — rejected with validation error
- x402 payment not confirmed on-chain — purchase not fulfilled
- Invalid or missing amount_usd — schema validation error
- Network or gateway timeout during key provisioning
- Duplicate purchase attempts may return reused:true with existing key

## 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 a live bearer API key (sk_live_...), key_id, credits added and remaining, whether the key was reused, expiry info, and a full map of available gateway endpoint paths (chat completions, embeddings, models, balance, etc.). The key can immediately be used as Authorization: Bearer <api_key> against the gateway.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "key_id": "key_example",
  "object": "api_key_purchase",
  "reused": false,
  "api_key": "sk_live_example",
  "gateway": {
   "models": "/v1/models",
   "balance": "/api/balance",
   "catalog": "/api/catalog",
   "purchase": "/api/purchase",
   "recharge": "/api/recharge",
   "responses": "/v1/responses",
   "embeddings": "/v1/embeddings",
   "instructions": "/api/instructions",
   "chatCompletions": "/v1/chat/completions"
  },
  "amount_usd": 1,
  "expires_at": null,
  "instructions": "Use the returned api_key as Authorization: Bearer <api_key>.",
  "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-purchase-6d8edc65/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)
