# Stratalize PE Return Benchmarks

> Stratalize PE Return Benchmarks is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns private equity return benchmarks (IRR, TVPI, DPI medians) by vintage year and strategy from industry composite data

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/pe-return-benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-pe-return-benchmarks-ca769af9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PdDmjyhmK1UWV0ZyHNPLl

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 stratalize-pe-return-benchmarks-ca769af9
```

Example prompt: Can you pull the PE return benchmarks for buyout strategy funds from vintage year 2018 — I need the IRR, TVPI, and DPI medians to compare against our fund's performance?

## When to prefer this

Use this endpoint when you need quantitative PE fund performance benchmarks (IRR, TVPI, DPI) segmented by strategy type and vintage year, especially when cryptographic verifiability of the benchmark data is required for compliance or LP reporting purposes. Prefer over generic financial data APIs when the specific use case involves PE fund benchmarking, GP track record evaluation, or LP expectation setting.

## Known failure modes

- Invalid strategy enum value returns 400 with accepted values list
- Vintage year outside available data range returns 404 or empty benchmark set
- Missing required parameters (strategy or vintage_year) returns 400 validation error
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Network timeout or service unavailability returns 503

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Private equity return benchmarks by vintage year and strategy — IRR, TVPI, and DPI medians from industry data. Source: Stratalize PE benchmark composite. Use when benchmarking fund performance, setting LP return expectations, or evaluating a GP track record

## Output

Returns IRR, TVPI, and DPI median benchmarks for the specified PE strategy and vintage year, drawn from Stratalize's industry composite. Each response is ML-DSA-65 cryptographically signed and includes a verifiable receipt URL at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "strategy": {
   "enum": [
    "buyout",
    "growth_equity",
    "venture_capital",
    "real_estate_pe",
    "credit"
   ],
   "type": "string",
   "description": "Request parameter: strategy"
  },
  "vintage_year": {
   "type": "number",
   "description": "Request parameter: vintage year"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-pe-return-benchmarks-ca769af9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
