Catalog/re-fix-and-flip-roi

Calculators

Fix-and-flip ROI API

Flip profit = ARV − (purchase + repairs + holding + selling costs); ROI = profit / total invested, with a rating bucket. Answers 'profit on this flip', 'fix-and-flip ROI', 'does this flip clear a 20% return after selling costs'.

Price$0.01per request
MethodPOST
Route/v1/calc/re-fix-and-flip-roi
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
real-estatefix-and-fliproifliprehabprofitfinancecalc
API URLhttps://x402.hexl.dev/v1/calc/re-fix-and-flip-roi
Integration docs
Example request
{
  "purchasePrice": 150000,
  "repairCosts": 40000,
  "arv": 260000,
  "holdingCosts": 8000,
  "sellingCostPct": 8
}
Example response
{
  "arv": 260000,
  "purchasePrice": 150000,
  "repairCosts": 40000,
  "holdingCosts": 8000,
  "sellingCosts": 20800,
  "totalInvested": 218800,
  "netProfit": 41200,
  "roiPct": 20.81,
  "rating": "strong (>=20%)"
}
Input schema
{
  "type": "object",
  "required": [
    "purchasePrice",
    "repairCosts",
    "arv"
  ],
  "properties": {
    "purchasePrice": {
      "type": "number",
      "examples": [
        150000
      ]
    },
    "repairCosts": {
      "type": "number",
      "examples": [
        40000
      ]
    },
    "arv": {
      "type": "number",
      "examples": [
        260000
      ]
    },
    "holdingCosts": {
      "type": "number",
      "examples": [
        8000
      ]
    },
    "sellingCostPct": {
      "type": "number",
      "default": 8
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}