{
  "format": "delx/intent-card/v1",
  "id": "vesting-remaining-api",
  "intent": "Token Vesting Remaining for an agent workflow",
  "title": "Token Vesting Remaining API for agents",
  "description": "Remaining unlock amount for linear vesting with optional cliff. Call when token unlock schedules for runway/treasury math. Returns vested, remaining, fraction_vested as deterministic JSON for $0.001 USDC via x402 on Base. First-party local math only—no RPC, live market feed, API keys, storage, or mediagen. Advisory only; the caller owns capital, risk, and production controls.",
  "keywords": [
    "Token Vesting Remaining API",
    "Token Vesting Remaining for agents",
    "pay per result API",
    "x402 API",
    "no API key"
  ],
  "updated_at": "2026-08-23",
  "canonical_url": "https://commerce.delx.ai/intents/vesting-remaining-api",
  "machine_url": "https://commerce.delx.ai/intents/vesting-remaining-api.json",
  "recommendation": {
    "tool_name": "util_vesting_remaining",
    "service_name": "Token Vesting Remaining",
    "method": "POST",
    "resource": "https://api.delx.ai/api/v1/x402/vesting-remaining",
    "price_usdc": "0.001",
    "payment_protocols": [
      "x402",
      "mpp"
    ],
    "input_schema": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "Total token amount to vest"
        },
        "start_ts": {
          "type": "integer",
          "description": "Vesting start unix timestamp"
        },
        "end_ts": {
          "type": "integer",
          "description": "Vesting end unix timestamp"
        },
        "now_ts": {
          "type": "integer",
          "description": "Evaluation unix timestamp"
        },
        "cliff_ts": {
          "type": "integer",
          "description": "Optional cliff unix timestamp"
        }
      },
      "required": [
        "total",
        "start_ts",
        "end_ts",
        "now_ts"
      ],
      "additionalProperties": true
    },
    "example_input": {
      "total": 1000,
      "start_ts": 0,
      "end_ts": 100,
      "now_ts": 40,
      "cliff_ts": 0
    },
    "example_output": {
      "schema": "delx/util-vesting-remaining/v1",
      "vested": 400,
      "remaining": 600,
      "fraction_vested": 0.4
    },
    "agentcash": {
      "buy": "npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/vesting-remaining -m POST -H 'x-delx-source: intent-card-vesting-remaining-api' --max-amount 0.001 -b '{\"total\":1000,\"start_ts\":0,\"end_ts\":100,\"now_ts\":40,\"cliff_ts\":0}'",
      "max_amount_usdc": "0.001"
    }
  },
  "attribution": {
    "header": "x-delx-source",
    "value": "intent-card-vesting-remaining-api"
  },
  "evidence": {
    "paid_openapi": "https://api.delx.ai/openapi.x402.json",
    "governed_portfolio": "https://api.delx.ai/x402-portfolio.json",
    "live_contract": "https://api.delx.ai/api/v1/x402/vesting-remaining"
  }
}
