# Hermes Storefront Basic Multifamily Deals Feed

> Hermes Storefront Basic Multifamily Deals Feed is a paid API for AI agents from hermes-storefront.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns card-level listings from the active multifamily real estate deals feed — address, price, units, advertised cap rate, listing URL, and freshness — without computed underwriting or scoring.

## Facts

- Endpoint: GET https://hermes-storefront.onrender.com/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/hermes-storefront-basic-multifamily-deals-feed-a4eed453
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5PdngHX_G2Oe3RNsBox4Q

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 hermes-storefront-basic-multifamily-deals-feed-a4eed453
```

Example prompt: Pull the basic multifamily deals feed and show me all active listings — I just need the address, price, unit count, and advertised cap rate for each one, no full underwriting needed.

## When to prefer this

Use this endpoint when you need broad coverage of the active multifamily deals feed at minimal cost and do not need computed underwriting metrics like NOI or DSCR. It is the cheapest way to scan the full universe of listings for initial screening, triage, or building a shortlist before investing in the full underwriting feed. Prefer it over the full feed when budget is a concern or when card-level data (address, price, units, cap rate) is sufficient for your workflow.

## Known failure modes

- Payment not provided or invalid — 402 response requiring x402 payment of $0.01 USDC
- No active listings matching query filters — empty results array returned
- Invalid query parameter format — 400 bad request
- Feed temporarily unavailable on Render free tier (cold start delay or downtime) — 503 or timeout

## 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 active multifamily property listing cards, each containing the street address, listing price, number of units, advertised cap rate, a URL to the full listing, and a freshness timestamp indicating how recently the listing was updated. No computed underwriting metrics (NOI, DSCR, scores) are included.

## 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/hermes-storefront-basic-multifamily-deals-feed-a4eed453/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hermes-storefront.onrender.com](https://www.zero.xyz/host/hermes-storefront.onrender.com/llms.txt)
