# SignalHarness Token Vesting Schedule Generator

> SignalHarness Token Vesting Schedule Generator is a paid API for AI agents from signalharness.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates a structured token vesting schedule based on caller-supplied parameters describing the vesting arrangement

## Facts

- Endpoint: POST https://signalharness.ai/api/agent/services/token_vesting_schedule/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalharness-token-vesting-schedule-generator-7be751da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9U72B7jVel5H9kEMZZBe9

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 signalharness-token-vesting-schedule-generator-7be751da -d '<json body>'
```

Example prompt: Can you generate a token vesting schedule for a 4-year plan with a 1-year cliff, vesting 1,000,000 tokens total for a new employee starting January 1, 2025, with monthly unlocks after the cliff?

## When to prefer this

Choose this endpoint when you need to quickly generate a structured, customizable token vesting schedule in natural language without building your own vesting calculation logic. It is well-suited for crypto startups, DAOs, and DeFi projects that need to model employee, advisor, or investor token grants on-demand via an AI agent. It is a better fit than a spreadsheet template when the vesting logic is complex or needs to be dynamically generated from a description.

## Known failure modes

- Malformed or ambiguous vesting_schedule_request string may produce warnings or an incomplete schedule
- Request string exceeding 65,536 characters will be rejected
- Missing key parameters like total tokens, duration, or cliff period may result in an incomplete or generic schedule
- Network or payment settlement failures on Base (eip155:8453) may prevent execution
- Contradictory vesting parameters (e.g. cliff longer than total duration) may trigger warnings

## How this service works

Explore 330 pay-per-call x402 API services and 27 agent-native digital products, with Base USDC pricing, secure Polar checkout, and free discovery.

## Output

Returns a structured vesting schedule document with milestone-by-milestone token unlock details, along with any warnings about the input parameters, an evidence scope indicator noting the data is caller-supplied, and a full payment receipt including request and execution IDs, latency, network details, and a SHA-256 result hash for verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vesting_schedule_request": {
   "type": "string",
   "maxLength": 65536,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "replay": false,
  "result": {
   "warnings": [
    "Schedule terms and timestamps are caller supplied."
   ],
   "service_id": "token_vesting_schedule",
   "evidence_scope": "caller_supplied_data",
   "vesting_schedule": "{\"total_atomic\":\"1000\",\"unvested_atomic\":\"500\",\"vested_atomic\":\"500\",\"vested_percent\":\"50\"}"
  },
  "status": "succeeded",
  "receipt": {
   "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
   "usage": [],
   "status": "succeeded",
   "network": "eip155:8453",
   "artifacts": [],
   "endedAtMs": 0,
   "latencyMs": 0,
   "paymentId": "example-payment",
   "receiptId": "example-receipt",
   "requestId": "example-request",
   "serviceId": "token_vesting_schedule",
   "executionId": "example-execution",
   "startedAtMs": 0,
   "amountAtomic": "10000",
   "resultSha256": "e223fba89db5de8d3e93787b1404d8e811cc05db778c696a0488703947c6df31",
   "serviceVersion": "1.0.0",
   "settlementReference": "0x0000000000000000000000000000000000000000000000000000000000000000"
  },
  "artifacts": [],
  "requestId": "example-request",
  "executionId": "example-execution"
 }
}
```

## More

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