# KiHustle Token Vesting Schedule Calculator

> KiHustle Token Vesting Schedule Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Computes a token vesting schedule given total token amount, vesting duration, and cliff period

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/token-vesting-schedule
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-token-vesting-schedule-calculator-2a111df5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sTWqMKp4lE9EO8QqUoXTv

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 kihustle-token-vesting-schedule-calculator-2a111df5 -d '<json body>'
```

Example prompt: Calculate a token vesting schedule for 1,000,000 tokens over 48 months with a 12-month cliff period.

## When to prefer this

Use this endpoint when you need a quick, inexpensive computation of a standard linear token vesting schedule with a cliff period. Best suited for straightforward scenarios where you know total token count, vesting duration in months, and cliff duration in months. Not ideal if you need complex vesting curves (e.g. non-linear, milestone-based, or multi-tranche schedules).

## Known failure modes

- Missing required fields (total_tokens, vesting_months, cliff_months) return an error
- cliff_months greater than vesting_months may produce invalid or empty schedule
- Non-integer values for month fields may cause validation errors
- Negative token amounts or zero vesting months likely rejected
- Service may return generic success/failure without detailed breakdown due to minimal response schema

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a status indicator and processed result confirming the vesting schedule computation. The response likely includes the computed release schedule showing when and how many tokens unlock at each period given the cliff and total vesting duration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cliff_months": {
   "type": "integer"
  },
  "total_tokens": {
   "type": "number"
  },
  "vesting_months": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-token-vesting-schedule-calculator-2a111df5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
