UXRivalBETA
FeaturesHow it worksWho it's forHistoryWatchlistAPI
// PUBLIC API

Build with UX Rival

Integrate AI-powered UX analysis into your own tools. Free. No API key required.

https://uxrival.xyz/api/v1

Endpoint

POST/analyze

Run a comprehensive UX analysis for any product category. Get instant insights on competitors, scoring, recommendations, and market gaps.

FieldTypeDescription
categorystringProduct category to analyze (e.g., "fintech", "ecommerce")
competitorsarrayArray of competitor names (e.g., ["Paystack", "Flutterwave"])
depthstringAnalysis depth: "quick" or "deep"

Example Request

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();

Try it Live

Response
{ "category": "fintech", "competitors": ["Paystack", "Flutterwave"], "depth": "quick", "analysis": { "scores": { "Paystack": 85, "Flutterwave": 92 }, "recommendations": [ "Consider implementing biometric authentication", "Add transaction history features" ] } }

Rate Limits

Requests per minute10
Burst limit30 requests per hour
Reset window1 minute

← Back to UX Rival

Built for developers who ship · Powered by Claude