# Stratalize Construction Cost Benchmark

> Stratalize Construction Cost Benchmark 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 hard cost per SF, soft cost ratios, contingency standards, and escalation rates for new construction projects by building type, region, and construction class, sourced from NAHB, Turner CCI, and RSMeans.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/construction-cost-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-construction-cost-benchmark-76429f33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NTtyqKT9FeNLqSPxhK1qK

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-construction-cost-benchmark-76429f33
```

Example prompt: What are the hard cost per SF benchmarks, soft cost ratios, and escalation rates for a Class A multifamily concrete project in the northeast — I need this for a new construction underwriting?

## When to prefer this

Use this endpoint when a developer, lender, or underwriter needs authoritative, cryptographically verifiable construction cost benchmarks (hard cost per SF, soft costs, contingency, escalation) broken down by building type, region, and construction class, backed by NAHB, Turner CCI, and RSMeans sources. Prefer this over manual research or non-verified cost databases when auditability and source credibility are required.

## Known failure modes

- Invalid or missing region enum value returns 400 error
- Invalid building_type enum value returns 400 error
- Invalid construction_class enum value (not A, B, or C) returns 400 error
- Payment failure or insufficient USDC balance results in 402 Payment Required
- No data available for a specific combination of region and building type may return empty or partial results

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when a developer or lender is underwriting a new construction project. Returns hard cost per SF by building type and region, soft cost ratios, contingency standards, and escalation rate. Source: NAHB + Turner CCI + RSMeans

## Output

Returns hard cost per square foot by building type and region, soft cost ratios, contingency standards, and escalation rate, all sourced from NAHB, Turner CCI, and RSMeans data. Each response is ML-DSA-65 cryptographically signed and includes a verifiable receipt link at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "region": {
   "enum": [
    "national",
    "northeast",
    "southeast",
    "midwest",
    "southwest",
    "west_coast"
   ],
   "type": "string",
   "description": "Request parameter: region"
  },
  "building_type": {
   "enum": [
    "single_family",
    "multifamily_wood_frame",
    "multifamily_concrete",
    "office_class_a",
    "office_class_b",
    "industrial_warehouse",
    "retail_strip",
    "medical_office",
    "hotel",
    "self_storage"
   ],
   "type": "string",
   "description": "Request parameter: building type"
  },
  "construction_class": {
   "enum": [
    "A",
    "B",
    "C"
   ],
   "type": "string",
   "description": "Request parameter: construction class"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-construction-cost-benchmark-76429f33/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)
