# Northeast Deal Intel Owner Lookup

> Northeast Deal Intel Owner Lookup 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-15).

Returns property owner name, years held, and ownership aging signal for a given address using 100K+ deed records in the Northeast US

## Facts

- Endpoint: GET https://api.northeastdealintel.com/v1/agent/owner-lookup
- Price: $0.05/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-dd9439ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dQe7zesgzglFlHJHt20MM

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-dd9439ba
```

Example prompt: Who owns 245 Park Avenue in New York, and how long have they held the deed? I want the ownership aging signal too.

## When to prefer this

Use this endpoint when you need to quickly identify who owns a specific Northeast US commercial property, how long they have held it, and whether ownership tenure signals a potential selling opportunity. Prefer this over general public records searches when you need structured, machine-readable output with an aging signal baked in, especially as part of a deal prospecting or lead scoring workflow.

## Known failure modes

- Address not found in deed records — returns empty or null owner data
- State not recognized or outside Northeast US coverage — returns error or no data
- Ambiguous address string that cannot be matched — may return wrong or no record
- Rate limiting or payment failure via x402 — returns 402 Payment Required
- Malformed query parameters — returns 400 Bad Request

## How this service works

Owner name, years held, aging signal from 100K+ deed records

## Output

Returns the current owner name, the number of years they have held the property, and an aging signal derived from 100K+ deed records — useful for assessing deal momentum, distress indicators, or seller motivation.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "state": "MA",
   "address": "123 Main 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"
      },
      "address": {
       "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-dd9439ba/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)
