The AI Design Taste API provides programmatic access to our catalog of design systems from top brands. This API is designed for AI agents and developers who want to integrate design system data into their applications.
https://aidesigntaste.com/api
No authentication is required. All endpoints are publicly accessible.
Retrieve the complete catalog of design systems.
category (optional) - Filter by category: AI, Fintech, Developer Tools, Productivity, Automotive, Design, E-commerce, TechnologyGET /api/design-systems?category=Fintech
{
"systems": [
{
"id": "stripe",
"name": "Stripe",
"category": "Fintech",
"logo": "https://cdn.brandfetch.io/stripe.com/w/400/h/400",
"designMdUrl": "https://aidesigntaste.com/design-md/stripe",
"apiUrl": "https://aidesigntaste.com/api/design-systems/stripe"
}
],
"total": 1,
"categories": ["AI", "Fintech", "Developer Tools", ...]
}
Get detailed information about a specific design system.
id (required) - Design system identifier (e.g., "stripe", "linear.app")GET /api/design-systems/stripe
{
"id": "stripe",
"name": "Stripe",
"category": "Fintech",
"logo": "https://cdn.brandfetch.io/stripe.com/w/400/h/400",
"designMdUrl": "https://aidesigntaste.com/design-md/stripe",
"designMdContent": "# Stripe Design System\n\n...",
"webUrl": "https://aidesigntaste.com/design-md/stripe",
"lastUpdated": "2026-05-05T14:43:10.000Z"
}
Submit a brand for inclusion in the design systems catalog.
{
"brandName": "Example Brand",
"website": "https://example.com",
"email": "contact@example.com",
"category": "Technology",
"designSystemUrl": "https://example.com/design-system",
"message": "Optional message"
}
{
"success": true,
"message": "Brand submission received successfully"
}
Check API health status.
{
"status": "healthy",
"timestamp": "2026-05-05T14:43:10.000Z",
"version": "1.0.0",
"services": {
"database": "operational",
"api": "operational"
}
}
We provide an MCP server card for easy integration with AI agents:
/.well-known/mcp/server-card.jsonhttps://aidesigntaste.com/apiDiscover available agent skills for design system analysis:
/.well-known/agent-skills/index.jsonOur website supports WebMCP for browser-based AI agent interactions. The following tools are available:
get_design_systems - Get design systems catalogget_design_system - Get specific design system detailssearch_design_systems - Search design systemssubmit_brand - Submit a brand for inclusionThe homepage supports markdown content negotiation for AI agents:
GET /
Accept: text/markdown
Currently, there are no rate limits on the API. Please use responsibly.
For API support or questions, visit aidesigntaste.com