API Documentation
A public, read-only JSON API that exposes the loan program information already published on this website.
Purpose
The Key Real Estate Capital API lets people, applications, and AI agents read the same loan program information that appears on keyrealestatecapital.com/loan-products in a structured format. It contains no customer, borrower, application, employee, or internal system data.
Base URL
https://keyrealestatecapital.comAuthentication
None. All endpoints are public and unauthenticated. No API key, token, or header is required or accepted.
HTTP methods
GET only. The API is read-only: there are no POST, PUT, PATCH, or DELETE operations, and no way to write data.
Response format
Every endpoint returns UTF-8 JSON with Content-Type: application/json; charset=utf-8. Successful responses return HTTP 200. Unknown paths return HTTP 404.
Endpoints
| Method | Path | Description | Content-Type |
|---|---|---|---|
| GET | /api/ | Service metadata: name, version, documentation and OpenAPI links. | application/json |
| GET | /api/health | Availability check. Returns { "status": "ok" } with HTTP 200. | application/json |
| GET | /api/loan-programs | The loan programs published on this website, with their public program details. | application/json |
| GET | /api/openapi.json | OpenAPI 3.1 description of this API. | application/json |
Example requests
curl https://keyrealestatecapital.com/api/
curl https://keyrealestatecapital.com/api/health
curl https://keyrealestatecapital.com/api/loan-programs
curl https://keyrealestatecapital.com/api/openapi.jsonGET /api/
{
"name": "Key Real Estate Capital API",
"version": "1.0.0",
"description": "Public read-only API for Key Real Estate Capital. Exposes only information already published on keyrealestatecapital.com.",
"documentation": "https://keyrealestatecapital.com/docs/api",
"openapi": "https://keyrealestatecapital.com/api/openapi.json",
"authentication": "none",
"methods": ["GET"]
}GET /api/health
{
"status": "ok"
}GET /api/loan-programs
{
"count": 7,
"source": "https://keyrealestatecapital.com/loan-products",
"disclaimer": "Program details reflect publicly published website content and are subject to change, underwriting, and eligibility. Not a commitment to lend.",
"loanPrograms": [
{
"id": "fix-and-flip",
"name": "Fix & Flip",
"description": "Short-term financing for property renovation and resale projects",
"loanAmountRange": "$100K - $2M",
"term": "6-18 months",
"startingRate": "Starting at 7.75%",
"features": ["Up to $2M loan amounts", "6-18 month terms", "Interest-only payments", "Fast 7-14 day closings"],
"url": "https://keyrealestatecapital.com/loan-products/fix-and-flip"
}
],
"additionalPrograms": [ ... ]
}Machine-readable description
- OpenAPI 3.1: /api/openapi.json
- RFC 9727 API Catalog: /.well-known/api-catalog
- Site index for agents: /llms.txt and /sitemap.xml
Terms and caveats
Rates, terms, and loan amounts are the publicly advertised starting points shown on this website. They are subject to change, underwriting, and eligibility, and are not a commitment to lend. Use of the API is subject to our Terms of Service. There are no published rate limits; please keep automated requests reasonable.