# Northeast Deal Intel – AI Deal Scoring

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

Scores a commercial real estate deal 1–10 using a 4-lens institutional framework, returning a score, investment thesis, and risk flags

## Facts

- Endpoint: GET https://api.northeastdealintel.com/v1/agent/score
- 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/api-northeastdealintel-com-862b6070
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dmG1z5cETQgnHh1Qa8jEC

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-862b6070
```

Example prompt: Can you run an institutional deal score on this multifamily property at 412 Elm Street, Newark, NJ — asking price $3,200,000 with a 5.8% cap rate? I want the 1–10 score, the investment thesis, and any red flags.

## When to prefer this

Use this endpoint when you need a fast, structured institutional-quality score on a Northeast US commercial real estate deal, especially when you have cap rate and price data and need a concise 1–10 rating with thesis and flags rather than raw market data. Prefer over generic valuation tools when the property is in the Northeast US and the property type matches the supported enum (industrial, multifamily, retail, office, land, mixed-use).

## Known failure modes

- Missing required fields (address, city, state, property_type) return 400 validation error
- Invalid state code returns schema validation error
- Unsupported property_type enum value returns 422
- cap_rate outside realistic range may produce degraded scoring
- Payment failure via x402 returns 402 Payment Required
- Service unavailable returns 503

## How this service works

AI deal scoring — 4-lens institutional framework, 1-10 score, thesis, flags

## Output

Returns a 1–10 deal score based on a 4-lens institutional framework, an investment thesis narrative explaining the score, and a list of risk flags or deal concerns for the submitted commercial property.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "price": {
   "type": "number"
  },
  "state": {
   "type": "string",
   "description": "2-letter US state code"
  },
  "address": {
   "type": "string"
  },
  "cap_rate": {
   "type": "number"
  },
  "property_type": {
   "enum": [
    "industrial",
    "multifamily",
    "retail",
    "office",
    "land",
    "mixed-use"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 8,
  "thesis": "Strong industrial deal in active Hartford submarket",
  "red_flags": [],
  "green_flags": [
   "above-market cap rate",
   "below replacement cost"
  ],
  "1031_candidate": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-northeastdealintel-com-862b6070/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)
