# Hermes Storefront Property Lookup

> Hermes Storefront Property Lookup is a paid API for AI agents from hermes-storefront.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Cross-feed property lookup by address returning active multifamily listings, county tax-delinquency signals, and sheriff-sale auction records in a single call

## Facts

- Endpoint: GET https://hermes-storefront.onrender.com/api/lookup
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hermes-storefront-property-lookup-ede3402e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BelxP_YfMZdXFCKWlqiWQ

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-property-lookup-ede3402e
```

Example prompt: Pull everything Hermes knows about 1234 Elm Street in Cincinnati, Ohio — multifamily listings, any tax-delinquency flags, and whether it's scheduled for a sheriff sale.

## When to prefer this

Use this endpoint when you need a single-call answer to 'what do we know about this property?' across multiple real estate data types (listings, tax delinquency, foreclosure auctions) without making separate calls to each feed. Ideal for agents doing property due diligence, investment screening, or distress signal identification on a specific address. Prefer over individual feed endpoints when the property type or data category is unknown in advance.

## Known failure modes

- No matching records found for address — returns free empty result with explanation
- Address parameter missing — returns validation error
- City/state optional but may affect match quality if omitted
- Service temporarily unavailable on Render cold start — retry after brief delay
- Ambiguous address string — may return partial or mismatched results

## How this service works

One property in, everything we know out: pass ?address= or ?apn= (parcel id; plus optional city/state) and get every matching record across all DwellData feeds — active multifamily listings with underwriting, county tax-delinquency signals, and upcoming sheriff-sale auctions, each with its public source URL. Task-shaped for agents: one property question, one call. No match returns free — you never pay for a blank.

## Output

A consolidated response containing all matching records from Hermes feeds for the queried address: active multifamily listings with underwriting metrics, county tax-delinquency distress signals, and upcoming sheriff-sale auction entries — each record includes its public source URL. Returns empty gracefully (no charge for no-match).

## 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-property-lookup-ede3402e/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)
