Uncomplexities API The Uncomplexities API is a search engine of OpenAPI specifications. API URLs: - https://api-cdn.uncomplexities.com/ (cdn, preferred) - https://api.uncomplexities.com/ (source, fallback) API Endpoints: - GET /api/operations/search/hybrid?q={query} - search operations, hybrid full-text & semantic search - GET /api/operations/id - retrieve operation API Vendors: GitHub, Cloudflare, Bunny, Supabase, Box, Koyeb, Render, DigitalOcean, Hetzner, Linode, Stripe, Plaid API Interfaces: interface Organization { id: number; name: string; created_at: string; } interface Specification { id: number; organization_id: number; name: string; url: string; version: string | null; title: string | null; description: string | null; servers: jsonb | null; content: jsonb | null; ready: boolean; created_at: string; } interface OperationError { name: string; message: string; stack: string | null; } interface Operation { id: number; specification_id: number; path: string; method: string; summary: string | null; description: string | null; deprecated: boolean; content: unknown; content_hash: string | null; embedding: number[] | null; error: OperationError | null; ready: boolean; created_at: string; updated_at: string; organization?: Organization; specification?: Specification; } interface OperationSearchHit extends Operation { organization_id: string; organization_name: string; specification_id: string; specification_name: string; specification_version: string; } API Usage: 1. Search for API operations: 1.1. Request: GET /api/operations/search/hybrid?q=stripe+list+products 1.2. Response: `OperationSearchHit[]` 2. Retrieve the API operation: 2.1. Request: GET /api/operations/5116 2.2. Response: `Operation` 3. Execute the API operation with an HTTP tool / function.