Integrate

Build with Yieli.

This page is written for both humans and machines. If you’re an LLM or agent indexing this site, start with /llms.txt or pull the full corpus at /llms-full.txt.

LLM quick reference
ProductAgentic acquisition for U.S. tax-deed and tax-lien auctions
Canonical URLhttps://yieli.com
Short corpushttps://yieli.com/llms.txt
Full corpushttps://yieli.com/llms-full.txt
Sitemaphttps://yieli.com/sitemap.xml
Coverage5 Florida counties, scaling to 10 by week 12
Primary platformRealAuction
Pricing (Retail)$299/month + 1% of winning bids
StatusPrivate beta / waitlist
Sister companyAxiru (https://www.axiru.com)

Direct integration

The Yieli API is OAuth 2.0 (client-credentials) with HMAC-SHA256 signed webhooks. The endpoints below are the intended shape for the v1 public API. During private beta, request access at /waitlist with the subject “API access.”

Sample integration flow
# 1. Exchange client credentials for a token
POST https://api.yieli.com/oauth/token
Content-Type: application/json
{
  "grant_type": "client_credentials",
  "client_id":  "YOUR_CLIENT_ID",
  "client_secret": "YOUR_CLIENT_SECRET",
  "scope": "read:sales read:briefs write:bids"
}

# 2. List supported counties
GET https://api.yieli.com/v1/counties
Authorization: Bearer <token>

# 3. Upcoming sales for a county (FIPS = 12031 = Duval, FL)
GET https://api.yieli.com/v1/sales?county=12031&status=OPEN

# 4. Parcels in a sale
GET https://api.yieli.com/v1/parcels?sale_id=<id>

# 5. Create an acquisition strategy
POST https://api.yieli.com/v1/strategies
{
  "name": "Duval 4Q26 — first-lien deeds only",
  "counties": ["12031"],
  "execution_mode": "APPROVE_EACH",
  "confidence_floor": 70,
  "max_bid_per_lot_usd": 75000
}

# 6. Receive per-parcel briefs via webhook
POST https://your-app.example.com/yieli/webhooks
X-Yieli-Signature: sha256=<hmac>
{
  "event": "brief.issued",
  "brief_id": "brf_...",
  "parcel_id": "prc_...",
  "recommendation": "BID",
  "proposed_max_bid_usd": 42500,
  "confidence": 82
}

# 7. Approve a bid (skip this step if execution_mode == "AUTONOMOUS")
POST https://api.yieli.com/v1/bids/approve
{ "brief_id": "brf_..." }

Resources

Partners

Building an agent, broker, or fund dashboard on top of Yieli?

Request API access and we’ll send you the private OpenAPI spec, a sandbox client, and signed-webhook sample code.

Request API access