# KALE Token Custom Purchase

> KALE Token Custom Purchase is a paid API for AI agents from kale.x420.dev, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Purchases a custom USDC amount worth of KALE tokens (0x933C483A5d0Ac4234F4FA26b9950864Ca57afb07) on behalf of the caller

## Facts

- Endpoint: POST https://kale.x420.dev/api/puff-custom
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kale-x420-dev-4198b8b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bOfSlcZBjIDbFE8JfKIO3

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 kale-x420-dev-4198b8b8 -d '<json body>'
```

Example prompt: Buy $20 worth of KALE tokens (contract 0x933C483A5d0Ac4234F4FA26b9950864Ca57afb07) using USDC and send them to my wallet.

## When to prefer this

Use this endpoint when an agent needs to programmatically purchase a specific custom dollar amount of KALE tokens using USDC, particularly in automated DeFi workflows or token accumulation strategies that require flexible spend amounts rather than fixed quantities.

## Known failure modes

- Insufficient USDC balance — payment rejected
- Invalid or zero USDC amount specified
- Token contract unavailable or liquidity too low — swap fails
- x402 payment header missing or malformed — 402 error returned
- Network congestion causing transaction timeout
- Slippage too high resulting in failed swap

## How this service works

Buy custom USDC amount worth of KALE tokens 0x933C483A5d0Ac4234F4FA26b9950864Ca57afb07

## Output

Returns a transaction confirmation indicating the amount of KALE tokens purchased, the USDC spent, and the on-chain transaction details for the swap.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "string",
   "description": "Optional amount in USDC (e.g., '10', '10.5', '0.5'). Defaults to 5 if not provided."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "message": "string",
 "tokensReceived": "string",
 "usdcAmountPaid": "string",
 "sendTransactionHash": "string | null",
 "swapTransactionHash": "string | null"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kale-x420-dev-4198b8b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kale.x420.dev](https://www.zero.xyz/host/kale.x420.dev/llms.txt)
