# Northeast Deal Intel – Market Cap Rate Benchmarks

> Northeast Deal Intel – Market Cap Rate Benchmarks is a paid API for AI agents from api.northeastdealintel.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns live cap rate benchmarks by property type for a specified Northeast US state

## Facts

- Endpoint: GET https://api.northeastdealintel.com/v1/agent/market-benchmarks
- 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/api-northeastdealintel-com-9085e190
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vy8mXmrei7fFOlpOzyGGq

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 api-northeastdealintel-com-9085e190
```

Example prompt: What are the live cap rate benchmarks for commercial real estate in New York — break it down by property type so I can see where multifamily and retail stand right now.

## When to prefer this

Use this endpoint when you need current, state-level cap rate benchmarks specifically for Northeast US commercial real estate (CT, MA, NJ, NY, PA, RI, NH, VT, ME). It is the right choice for deal underwriting, pricing validation, or market comparison tasks within this region. Prefer it over generic national real estate APIs when Northeast-specific granularity matters.

## Known failure modes

- Missing required 'state' query parameter — returns 400 Bad Request
- Unsupported state code (e.g. CA, TX outside Northeast coverage) — returns 400 or 404
- No benchmark data available for the requested state — returns 404 or empty result set
- Service unavailable or data feed outage — returns 503
- Payment not processed (x402 protocol failure) — returns 402 Payment Required

## How this service works

Live cap rate benchmarks by state and property type for Northeast US commercial real estate

## Output

Returns live cap rate benchmark figures segmented by property type for the requested Northeast US state, giving investors a real-time reference point for evaluating deal pricing relative to market norms.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "state": "CT"
  }
 }
}
```

## 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",
     "required": [
      "state"
     ],
     "properties": {
      "state": {
       "type": "string",
       "description": "2-letter US state code (CT, MA, NJ, NY, PA, RI, NH, VT, ME)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "state": "CT",
  "benchmarks": [
   {
    "cap_rate_low": 7,
    "cap_rate_high": 8.5,
    "property_type": "industrial",
    "strong_buy_below": 7.5
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-northeastdealintel-com-9085e190/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.northeastdealintel.com](https://www.zero.xyz/host/api.northeastdealintel.com/llms.txt)
