# Scalogy Graded Real Estate Deal Finder

> Scalogy Graded Real Estate Deal Finder is a paid API for AI agents from x402-scalogy-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns daily-scored US residential real estate listings graded for flip, BRRRR, or buy-and-hold strategies with ARV estimates, margins, and comp data across FL, GA, NC, SC, AL, MS

## Facts

- Endpoint: GET https://x402-scalogy-production.up.railway.app/find_graded_deals
- 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/scalogy-graded-real-estate-deal-finder-706d8efc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S8Wzxyh2a5LIZevDHinwG

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 scalogy-graded-real-estate-deal-finder-706d8efc
```

Example prompt: Pull me up to 20 STRONG-graded flip deals in Florida under $250,000 with at least 25% margin — I want the ARV, spread, and comp count for each listing.

## When to prefer this

Use this endpoint when you need pre-scored, investment-ready residential real estate deal lists across the Southeast US (FL, GA, NC, SC, AL, MS) and want algorithmic grading (STRONG/MODERATE/FAIR) for a specific strategy (flip, BRRRR, buy-and-hold) with ARV, margin, and comp data already computed — rather than raw MLS listings that require your own analysis.

## Known failure modes

- Missing or invalid client_id returns authentication/authorization error
- State code not in supported coverage (FL, GA, NC, SC, AL, MS) returns empty results or error
- Invalid strategy enum value returns 400 validation error
- limit outside 1-100 range returns validation error
- min_grade or strategy enum typo returns 400 bad request
- No deals matching filters returns empty results array
- Service downtime or Railway hosting issue returns 5xx error
- Payment not processed (x402 protocol failure) results in 402 Payment Required

## How this service works

Proprietary, daily-scored US residential real-estate deals for investors. Each on-market listing is graded (STRONG / MODERATE / FAIR) for flip, BRRRR, or buy-&-hold, with an estimated ARV from a live comp set, gross spread, margin %, cap rate / cash flow, days on market, comp count and the source URL. Filter by state, ZIP, city, price, beds, margin and ARV confidence. Coverage: FL, GA, NC, SC, AL, MS (2,400+ metro ZIPs).

## Output

A list of on-market residential listings each with: deal grade (STRONG/MODERATE/FAIR), investment strategy score, estimated ARV from live comps, gross spread, margin percentage, cap rate or cash flow (for rental/BRRRR), days on market, comp count, list price, location details, and a source URL to the listing. Results are filtered per the query parameters supplied.

## 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",
     "required": [
      "client_id"
     ],
     "properties": {
      "zip": {
       "type": "string",
       "description": "Exact ZIP filter."
      },
      "city": {
       "type": "string",
       "description": "City filter (case-insensitive)."
      },
      "limit": {
       "type": "integer",
       "description": "Max results (1-100)."
      },
      "state": {
       "type": "string",
       "description": "2-letter state filter, e.g. 'FL'."
      },
      "strategy": {
       "enum": [
        "flip",
        "brrrr",
        "buy_hold"
       ],
       "type": "string",
       "description": "Strategy to grade against ('rental' aliases buy_hold)."
      },
      "client_id": {
       "type": "string",
       "description": "Feed/tenant id (publisher-assigned)."
      },
      "max_price": {
       "type": "integer",
       "description": "Max list price (USD)."
      },
      "min_grade": {
       "enum": [
        "STRONG",
        "MODERATE",
        "FAIR"
       ],
       "type": "string",
       "description": "Minimum grade to return (this grade and better)."
      },
      "min_margin_pct": {
       "type": "number",
       "description": "Minimum gross margin %, e.g. 25."
      }
     }
    }
   },
   "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/scalogy-graded-real-estate-deal-finder-706d8efc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-scalogy-production.up.railway.app](https://www.zero.xyz/host/x402-scalogy-production.up.railway.app/llms.txt)
