v1 institutional feed

For institutional partners

A direct line to approved inventory.

Poll Lafue Realty’s machine-readable inventory feed for the listings our review queue has cleared for institutional diligence. The contract is intentionally small, stable, and built for scheduled systems rather than a browser workflow.

Endpoint

GET /feed.json
Authenticated, approved-only inventory
Private, no-store response headers
Deterministic listing order

Request format

Send a buyer session cookie.

The feed accepts the Better Auth session established for a buyer account. Keep the session value in your secret manager and inject it at request time; do not commit it to a script or repository.

Preferred request
Better Auth buyer session over HTTPS.
curl https://YOUR_DEPLOYMENT_HOST/feed.json \
  -b "better-auth.session_token=$BUYER_SESSION_TOKEN"
Institutional Feed Access
Provisioning stays with the Lafue Realty team.

Accredited teams can request access through the form below, or contact Lafue Realty at lafuerealty@polsia.app if they need onboarding.

Only an authenticated Better Auth session for a user with the buyer role is accepted. Unauthenticated callers receive 401; other signed-in roles receive 403.

Response contract
JSON
Stable v1 field names for polling and ingestion.
{
  "schemaVersion": "1",
  "generatedAt": "2026-08-27T12:00:00.000Z",
  "listings": [
    {
      "id": "listing-id",
      "address": "123 Magnolia Ave",
      "metro": "Knoxville",
      "asking": 185000,
      "arv": 240000,
      "spreadCents": 55000,
      "spreadPercent": 29.7297297297,
      "screeningBand": "10%+",
      "status": "approved",
    }
  ]
}

Before you inquire

Bring the deal context with you.

Review the approved inventory first, then open a property-specific request with the details the Lafue Realty team needs to route your diligence conversation.

Prepare these five details
The existing Request Info form will ask for each of these items.
  • Buyer name
  • Your work email
  • Your firm, company, or fund
  • The intended use for the information
  • A property-specific messagewith your diligence questions

Provisioning brief

Start with the mandate.

A few operating details help the Lafue Realty team route your request to the right inventory and access conversation.

Buyer access request
Tell us where the feed fits.
Share the mandate details Lafue Realty needs to provision the right institutional access conversation.

Prefilled from your buyer account when available; use a work email if needed.

Choose the approximate AUM or single-family portfolio size you are evaluating.

Select every market relevant to your mandate.

Choose the primary reason for requesting access.

Source and underwrite single-family rental opportunities.

Feed an active mandate or acquisition pipeline.

Evaluate market depth, pricing, and operating assumptions.

Optional context for the Lafue Realty team.

Lafue Realty will use these details to evaluate feed access and follow up with provisioning requirements.

Field notes

Designed for clean ingestion.

There are no formatted presentation values or internal workflow fields in the feed. Use the timestamps and integer amounts as the source contract for your diligence pipeline.

Talk through an integration

Amounts

asking and arv are integer USD cents, not formatted dollar strings.

Screening metrics

spreadCents and spreadPercent use the dashboard’s zero-repair, zero-assignment-fee underwriting calculation.

Inventory scope

The response includes approved records only and sorts them by id ascending.

Approval status

status is always approved; pending and rejected records are never serialized.

Session access

A valid Better Auth session with the buyer role is required; anonymous callers receive 401 and other roles receive 403.

An empty inventory is valid and returns listings: []. Pollers should treat it as a successful response, not a missing document.