BuiltByVibe API Reference

Integrate vibe-coded projects into your apps, dashboards, aggregators, or AI pipelines with open REST and MCP endpoints.

Base URL: https://builtbyvibe.devCORS: Access-Control-Allow-Origin: *

Zero-Friction Keyless Access

No signup, no authorization tokens, and no account required. All read endpoints are globally cached and protected by Cloudflare Workers at the edge, allowing you to build and prototype immediately without credentials.

GET/api/projects

Search, filter, and paginate approved vibe-coded applications. Returns projects sorted by trending, top likes, or creation time.

Query Parameters
searchstring (optional)Keyword filter matching title, tagline, description, or tools used.
categorystring (optional)Filter by category: SaaS, DevTools, Productivity, Design, etc.
toolstring (optional)Filter by tool: Cursor, Claude, v0, Lovable, Bolt, Devin.
sortstring (optional)Sort order: trending (default), top, or newest.
limitnumber (optional)Number of results to return (1-60, default: 30).
offsetnumber (optional)Pagination offset (default: 0).
slugsstring (optional)Comma-separated list of slugs to retrieve exact records (e.g. for bookmark hydration).
Example cURL
curl "https://builtbyvibe.dev/api/projects?category=DevTools&tool=Cursor&limit=5"
Response (200 OK)
{
  "success": true,
  "projects": [
    {
      "id": "vib_01",
      "title": "QueryCraft",
      "slug": "query-craft",
      "tagline": "Turn natural language questions into optimized SQL queries instantly.",
      "demo_url": "https://example.com/demo/querycraft",
      "repo_url": "https://github.com/example/querycraft",
      "ai_tools": "Cursor, Claude 3.7",
      "category": "DevTools",
      "vibe_percentage": 95,
      "build_time": "3 hours",
      "maker_name": "John Smith",
      "maker_handle": "@johnsmith",
      "upvotes_count": 48,
      "is_featured": 1
    }
  ],
  "count": 1,
  "total": 42,
  "hasMore": true
}
POST / GET/api/mcp

Model Context Protocol JSON-RPC 2.0 endpoint. Compatible with Claude Code, Claude Desktop, Cursor, and VS Code.

Example Tool Call: search_vibe_apps
curl -X POST "https://builtbyvibe.dev/api/mcp" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "search_vibe_apps",
      "arguments": { "tool": "Cursor", "limit": 3 }
    }
  }'

Plaintext AI Feeds