Catalog/re-arv-mao

Calculators

ARV max allowable offer (70% rule) API

Max allowable offer via the 70% rule: MAO = ARV·rule − repairCosts (rule configurable), the wholesaler/flipper purchase ceiling. Answers 'max offer using the 70% rule', 'MAO on a $300k ARV with $40k repairs', 'highest price I should pay for this flip'.

Price$0.01per request
MethodPOST
Route/v1/calc/re-arv-mao
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
real-estatearvmao70-percent-ruleflipwholesalefinancecalc
API URLhttps://x402.hexl.dev/v1/calc/re-arv-mao
Integration docs
Example request
{
  "arv": 300000,
  "repairCosts": 40000
}
Example response
{
  "arv": 300000,
  "repairCosts": 40000,
  "rulePct": 70,
  "maxAllowableOffer": 170000,
  "arvLessRepairs": 260000,
  "note": "use as ceiling purchase price"
}
Input schema
{
  "type": "object",
  "required": [
    "arv",
    "repairCosts"
  ],
  "properties": {
    "arv": {
      "type": "number",
      "description": "after-repair value",
      "examples": [
        300000
      ]
    },
    "repairCosts": {
      "type": "number",
      "examples": [
        40000
      ]
    },
    "rulePct": {
      "type": "number",
      "default": 70
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}