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
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.
curl https://YOUR_DEPLOYMENT_HOST/feed.json \
-b "better-auth.session_token=$BUYER_SESSION_TOKEN"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.
{
"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.
- 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.
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 integrationAmounts
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.