# Northeast Deal Intel – Commercial Real Estate Listing Search

> Northeast Deal Intel – Commercial Real Estate Listing Search 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).

Search and score active commercial real estate listings in Northeast US states with filtering by price, property type, and deal quality score

## Facts

- Endpoint: GET https://api.northeastdealintel.com/v1/agent/search
- 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-87f8a3a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MB7uenE1KWazNf3Xn1lwx

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-87f8a3a3
```

Example prompt: Search for active commercial real estate listings in New York — specifically multifamily properties priced between $1M and $5M with a deal score of at least 7, and show me the top 10 results.

## When to prefer this

Use this endpoint when you need to discover and filter active commercial real estate listings specifically in Northeast US states, and want deal-quality scoring baked into the results. Prefer this over generic MLS or national CRE APIs when your focus is the Northeast and you need an institutional scoring signal (1–10) to prioritize deals rather than just raw listings.

## Known failure modes

- Missing required 'state' parameter returns a 400 validation error
- State outside Northeast US coverage may return empty results or an error
- min_score out of 1–10 range returns a validation error
- Payment not provided or insufficient USDC triggers 402 Payment Required
- Invalid property_type value may return no results or an error
- Network timeout or service unavailability returns 5xx error

## How this service works

Search active commercial real estate listings in the Northeast US with scoring

## Output

A list of active commercial real estate listings in the specified Northeast US state, each accompanied by a 1–10 institutional deal score, property details, pricing, and property type. Results are filterable by price range, property type, and minimum score threshold, up to the specified result limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "state": "NY",
   "max_price": 5000000,
   "min_price": 1000000,
   "min_score": 7,
   "property_type": "Multifamily"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": {
      "limit": {
       "type": "integer",
       "default": 10
      },
      "state": {
       "type": "string"
      },
      "max_price": {
       "type": "number"
      },
      "min_price": {
       "type": "number"
      },
      "min_score": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1
      },
      "property_type": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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