---
name: compatibility-check
description: Check if a TV or monitor is compatible with a Mount-It product. Provide screen size in inches, weight in pounds, and VESA pattern. Returns compatible true or false with reasons and product recommendations.
version: "1.0"
---

# Mount-It Compatibility Check

## Endpoint
POST https://api.mount-it.com/ai-compatibility

## Required Input
- type: "tv" or "monitor"
- user.size_inches: screen diagonal in inches
- user.weight_lb: device weight in pounds
- user.vesa: VESA pattern e.g. "400x400"
- product.url: Mount-It product URL to check against

## Response
Returns compatible (boolean), reasons (array), and checks for size, weight, and VESA.

## Example
```json
{
  "type": "tv",
  "user": { "size_inches": 65, "weight_lb": 80, "vesa": "400x400" },
  "product": { "url": "https://www.mount-it.com/products/full-motion-tv-wall-mount-40-inch-extension-70-inch-tv-mi-393" }
}
```
