# Northeast Deal Intel – Sell Signal Score

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

Returns a 0–100% sell probability score for a commercial property based on ownership aging, days-on-market, distress indicators, and deal momentum signals

## Facts

- Endpoint: GET https://api.northeastdealintel.com/v1/agent/sell-signal
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-northeastdealintel-com-8758e674
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Md5kqN5zrh_RzD9VyOC0e

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-8758e674
```

Example prompt: What's the sell probability score for 245 Summer Street in Boston, MA — I want to know how motivated the owner might be to sell based on ownership aging, distress signals, and deal momentum.

## When to prefer this

Use this endpoint when you need a fast, quantified sell-likelihood score for a specific Northeast US commercial property address before committing to deeper due diligence. It is ideal for triage and deal sourcing workflows where you want to prioritize which owners to contact. Prefer this over the full 4-lens AI deal scoring endpoint when you only need a quick sell signal rather than a full investment thesis.

## Known failure modes

- Address not found in deed records — returns null or low-confidence score
- State code not in Northeast coverage area — may return out-of-scope error
- Address format not parseable — returns 400 validation error
- Insufficient historical data for the property — score returned with low confidence flag
- Payment failure via x402 — returns 402 Payment Required

## How this service works

Sell probability score 0–100% based on aging ownership, DOM, distress, deal momentum

## Output

A 0–100% sell probability score derived from a multi-factor model incorporating ownership aging (years held), days-on-market data, distress signals, and deal momentum. The response indicates how likely the current owner is to sell, helping investors prioritize outreach and deal sourcing.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "state": "MA",
   "address": "245 Summer Street"
  }
 }
}
```

## 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": [
      "address",
      "state"
     ],
     "properties": {
      "state": {
       "type": "string",
       "description": "2-letter US state code"
      },
      "address": {
       "type": "string",
       "description": "Property street address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signals": [
   "owned 18+ years",
   "DOM 90 days",
   "recent price reduction"
  ],
  "motivation_score": "high",
  "sell_probability": 72
 }
}
```

## More

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