# DwellData Multifamily Deals Feed — Basic Tier

> DwellData Multifamily Deals Feed — Basic Tier is a paid API for AI agents from dwelldata.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns card-level records for active multifamily listings (address, price, units, advertised cap rate, listing URL, freshness) without computed underwriting or scoring

## Facts

- Endpoint: GET https://dwelldata.io/api/deals/basic
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dwelldata-multifamily-deals-feed-basic-tier-b22e4954
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_79FKfIvSn3gc13oqUYui7

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 dwelldata-multifamily-deals-feed-basic-tier-b22e4954
```

Example prompt: Pull the current multifamily deals feed from DwellData — I just want the basic card-level data showing addresses, prices, unit counts, and advertised cap rates for active listings, without the full underwriting numbers.

## When to prefer this

Choose this endpoint when you need broad multifamily deal coverage at the lowest cost and plan to do your own underwriting or scoring. It is the right choice when you want to evaluate DwellData's geographic and listing coverage before committing to the full underwritten feed, or when you have an in-house model and only need raw card-level inputs (address, price, units, cap rate). Prefer the full underwritten feed if you need computed NOI/DSCR, or the hot deals endpoint if you want pre-filtered high-cap-rate opportunities.

## Known failure modes

- No matching listings found — returns empty result set (free, no charge)
- Invalid query parameter types cause a 400-level error
- Rate limiting or quota exceeded returns an error response
- Service unavailability returns a 5xx error

## How this service works

Entry tier of the multifamily deals feed: every active listing at card level — address, price, units, advertised cap rate, listing URL, freshness — without the computed underwriting or scoring. Same coverage, cheapest way to evaluate the feed. Same query filters as the full feed. Every field typed; a query that matches nothing returns free — you never pay for a blank.

## Output

A list of card-level records for active multifamily listings, each containing: street address, listing price, number of units, advertised cap rate, listing URL, and a freshness/last-updated timestamp. No computed NOI, DSCR, or scoring is included. A query matching no listings returns an empty result at no charge.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/dwelldata-multifamily-deals-feed-basic-tier-b22e4954/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dwelldata.io](https://www.zero.xyz/host/dwelldata.io/llms.txt)
