# VenturePulse Comparable Deal Analysis

> VenturePulse Comparable Deal Analysis is a paid API for AI agents from venturepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns comparable fundraising deals for startups similar to a given company, including valuations, dilution percentages, round sizes, and lead investors.

## Facts

- Endpoint: GET https://venturepulse.theaslangroupllc.com/api/startup/comparable
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/venturepulse-comparable-deal-analysis-630d9eba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I9ylScmRa_ZPujbFBuhGY

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-comparable-deal-analysis-630d9eba
```

Example prompt: Pull comparable funding deals for a B2B SaaS startup raising a Series A in the US — I want to see what similar companies raised, the pre-money valuations, dilution percentages, and which VCs led those rounds.

## When to prefer this

Use this endpoint when a founder or VC agent needs to benchmark a fundraising round against real comparable deals — specifically to understand market-rate valuations, typical dilution, and which investors are active in similar deals. Prefer this over generic VC news endpoints when structured deal-term benchmarking is the goal, and over the investor-matching endpoint when the focus is on deal economics rather than finding specific investors to approach.

## Known failure modes

- No comparable deals found for a highly niche or novel sector — returns empty result set
- Insufficient parameters provided (e.g. missing stage or sector) — returns 400 bad request
- Comparable data unavailable for very early pre-seed or pre-revenue companies with no analogues
- Rate limit or payment failure via x402 protocol — returns 402 Payment Required
- Outdated comps if deal database hasn't been refreshed for a recent market segment

## How this service works

Comparable deal analysis — what companies like yours raised, at what valuations, with what dilution and from which investors. For founder and VC agents.

## Output

A list of comparable fundraising deals including company names, round types, amounts raised, pre-money and post-money valuations, dilution percentages, lead investors, and deal dates for startups matching the query profile.

## 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": "pre-seed | seed | series-a | series-b (default: seed)"
      },
      "region": {
       "type": "string",
       "description": "us | eu | uk | apac | latam | mena | africa | global (default: global)"
      },
      "sector": {
       "type": "string",
       "description": "fintech | saas | biotech | ai | climate | consumer | b2b | deeptech | any (default: any)"
      },
      "description": {
       "type": "string"
      }
     }
    }
   },
   "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": {
  "stage": "seed",
  "benchmarks": {
   "median_dilution_pct": "20%",
   "median_round_size_usd": "$2.5M",
   "median_time_to_close_weeks": "12",
   "median_pre_money_valuation_usd": "$10M"
  },
  "your_raise_context": "Based on comps, a $2M-$3M raise at $8M-$12M pre is market-standard for B2B SaaS seed in 2025.",
  "comparable_companies": [
   {
    "date": "2019-11",
    "company": "Ramp",
    "lead_investor": "Founders Fund",
    "round_size_usd": "$3M",
    "stage_at_funding": "seed",
    "pre_money_valuation_usd": "$15M"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/venturepulse-comparable-deal-analysis-630d9eba/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)
