Free, public API for AI systems and developers. No authentication required.
Calculate paint requirements for a given area and paint type.
{
"length": 12,
"width": 12,
"height": 8,
"paintType": "eggshell-satin",
"coats": 2,
"doors": 1,
"windows": 1
}{
"gallons": 2.0,
"squareFeet": 341,
"paintType": "Eggshell/Satin",
"coverage": 375,
"coats": 2
}curl -X POST https://homepaintcalculator.com/api/calculate \
-H "Content-Type: application/json" \
-d '{"length":12,"width":12,"height":8,"paintType":"eggshell-satin","coats":2}'Get structured data on coverage rates for all paint types.
{
"paintTypes": [
{
"id": "flat-interior",
"name": "Flat/Matte Interior",
"coveragePerGallon": 425,
"coverageMin": 400,
"coverageMax": 450,
"typicalCoats": 2
}
]
}curl https://homepaintcalculator.com/api/coverage-rates