# Stratalize Climate Risk Benchmark

> Stratalize Climate Risk 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-15).

Returns physical and transition climate risk benchmarks (flood, hurricane, wildfire, heat, carbon pricing, stranded asset exposure) by region and property type, sourced from FEMA NFIP and NGFS scenarios.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/climate-risk-benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-climate-risk-benchmark-a6abf16a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kPuVmwJXE0oP6tKfgfXrV

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-climate-risk-benchmark-a6abf16a
```

Example prompt: Pull me all climate risk benchmarks — both physical and transition — for commercial properties in the southeast, so I can assess flood, hurricane, wildfire, heat, and carbon pricing exposure for our lending portfolio.

## When to prefer this

Choose this endpoint when a lender, ESG analyst, or automated risk agent needs standardized, attested climate risk benchmarks grounded in FEMA NFIP and NGFS data — especially when both physical risk (flood, wildfire, hurricane, heat) and transition risk (carbon pricing, stranded assets) are needed together. Prefer this over generic data APIs when regulatory integrity attestation is required or when you need region- and property-type-segmented benchmarks in a single call.

## Known failure modes

- Invalid region enum value returns a parameter validation error
- Invalid risk_type or property_type enum returns a schema validation error
- Network timeout or service unavailability returns a 5xx error
- Missing required parameters may result in a 400 bad request
- Payment failure via x402 protocol results in a 402 Payment Required response

## 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 lender or ESG agent needs physical and transition climate risk benchmarks. Returns flood, hurricane, wildfire, heat risk data, carbon pricing scenarios, and stranded asset exposure. Source: FEMA NFIP + NGFS scenarios

## Output

Returns structured climate risk benchmark data including physical risk scores (flood, hurricane, wildfire, heat) and transition risk data (carbon pricing scenarios, stranded asset exposure) for the specified region and property type, with integrity attestation for use in regulated workflows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "region": {
   "enum": [
    "southeast",
    "northeast",
    "midwest",
    "southwest",
    "west",
    "national"
   ],
   "type": "string",
   "description": "Request parameter: region"
  },
  "risk_type": {
   "enum": [
    "physical",
    "transition",
    "all"
   ],
   "type": "string",
   "description": "Request parameter: risk type"
  },
  "property_type": {
   "enum": [
    "commercial",
    "residential",
    "industrial",
    "all"
   ],
   "type": "string",
   "description": "Request parameter: property type"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-climate-risk-benchmark-a6abf16a/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)
