Integrate AI-powered UX analysis into your own tools. Free. No API key required.
Run a comprehensive UX analysis for any product category. Get instant insights on competitors, scoring, recommendations, and market gaps.
| Field | Type | Description |
|---|---|---|
| category | string | Product category to analyze (e.g., "fintech", "ecommerce") |
| competitors | array | Array of competitor names (e.g., ["Paystack", "Flutterwave"]) |
| depth | string | Analysis depth: "quick" or "deep" |
const res = await fetch("https://uxrival.xyz/api/v1/analyze", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
category: "fintech",
competitors: ["Paystack", "Flutterwave"],
depth: "quick"
})
});
const data = await res.json();