# VenturePulse Cap-Table Dilution Modeler

> VenturePulse Cap-Table Dilution Modeler is a paid API for AI agents from venturepulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Models post-round cap table ownership, dilution percentages, exit-scenario payouts, and benchmark comparisons for startup founders.

## Facts

- Endpoint: GET https://venturepulse.theaslangroupllc.com/api/startup/cap-table
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/venturepulse-cap-table-dilution-modeler-4b4f9a39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_utievN8UHjxtqcDlnx4UV

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 venturepulse-cap-table-dilution-modeler-4b4f9a39
```

Example prompt: Model my cap table after raising $4M at a $16M pre-money valuation — I currently own 60%, my co-founder owns 25%, and we have a 10% option pool. Show me post-round ownership, dilution percentages for each shareholder, and exit payouts if we sell for $80M.

## When to prefer this

Choose this endpoint when a founder or startup agent needs precise mathematical modeling of ownership dilution and exit scenarios for a specific funding round, with benchmark context. Prefer over generic financial calculators when startup-specific equity structures, option pools, and VC round mechanics are involved.

## Known failure modes

- Missing or invalid valuation inputs returns a 400 error with field validation details
- Cap table ownership percentages that don't sum to 100% trigger a validation error
- Unrealistic valuation or investment figures may return benchmark warnings
- Payment of 0.15 USDC not received results in 402 Payment Required
- Malformed shareholder structure input returns a schema validation error

## How this service works

Cap-table dilution modeler — post-round ownership, dilution percentages, exit-scenario modeling and benchmark comparisons. For founder and startup agents.

## Output

Returns a pro-forma cap table showing post-round ownership percentages for each shareholder, individual dilution percentages, exit scenario payouts at specified acquisition values, and benchmark comparisons against similar-stage raises.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | pt | it | nl | ko | zh | ar (default: en)"
      },
      "stage": {
       "type": "string",
       "description": "seed | series-a | series-b (default: seed)"
      },
      "sector": {
       "type": "string",
       "description": "any sector for benchmark context (default: any)"
      },
      "raise_usd": {
       "type": "string",
       "description": "(required) amount being raised in USD e.g. 2000000"
      },
      "structure": {
       "type": "string",
       "description": "priced | safe | note (default: priced)"
      },
      "founders_pct": {
       "type": "string",
       "description": "(required) current founder ownership percentage e.g. 80"
      },
      "pre_money_usd": {
       "type": "string",
       "description": "(required) pre-money valuation in USD e.g. 8000000"
      },
      "option_pool_pct": {
       "type": "string",
       "description": "current option pool percentage e.g. 10 (default: 10)"
      },
      "existing_investors_pct": {
       "type": "string",
       "description": "existing investor ownership percentage e.g. 15 (default: 0)"
      },
      "option_pool_increase_pct": {
       "type": "string",
       "description": "new option pool percentage required by investors (default: 0)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "post_round": {
   "founders_pct": 64,
   "option_pool_pct": 10,
   "new_investors_pct": 20,
   "existing_investors_pct": 12
  },
  "round_summary": "$2M seed at $8M pre-money ($10M post-money)",
  "exit_scenarios": [
   {
    "exit_valuation_usd": "$50M",
    "founder_pct_at_exit": 64,
    "founder_proceeds_usd": "$32M"
   }
  ],
  "dilution_summary": "Founders go from 80% to 64% — a 20% dilution before option pool expansion"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/venturepulse-cap-table-dilution-modeler-4b4f9a39/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from venturepulse.theaslangroupllc.com](https://www.zero.xyz/host/venturepulse.theaslangroupllc.com/llms.txt)
