Open API for Vibe Coding Data
Free. No auth required. Built for developers and AI assistants.
Pull tool data, pricing, comparisons, recommendations, and market stats via simple GET requests. Every response includes source: "claw.mobile" attribution.
Base URL
https://claw.mobileAll endpoints return JSON with Content-Type: application/json. CORS is enabled for all origins.
Available Tool Slugs
cursorwindsurfgithub-copilotclaude-codeopenclawaiderboltlovablev0replitdevingithub-sparkclinecontinuetabnineamazon-qtrae/api/toolsTool Directory
Returns all 17 vibe coding tools or a filtered subset. Use query parameters to narrow results by type, price, free tier, or skill level.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Optional | Filter by tool type: ai-ide, app-builder, terminal-agent, assistant, specialized |
free | boolean | Optional | Filter by free tier availability: true or false |
maxPrice | number | Optional | Filter by maximum starting price in dollars (e.g. 20) |
skillLevel | string | Optional | Filter by skill level: beginner, intermediate, advanced |
Example Request
curl https://claw.mobile/api/tools?type=ai-ide&free=trueExample Response
{
"tools": [
{
"slug": "cursor",
"name": "Cursor",
"logo": "/tools/cursor.png",
"type": "AI IDE",
"website": "https://cursor.com",
"pricing": { "free": true, "startingPrice": "$20/mo", "plans": [...] },
"bestFor": "Developers who want a full AI IDE with multi-model support",
"skillLevel": "Intermediate",
"features": ["Multi-model support", "Tab completion", ...],
"pros": ["Best-in-class multi-model flexibility", ...],
"cons": ["Pro plan at $20/mo is pricier than some", ...],
"rating": 4.7,
"updatedAt": "2026-04-01"
}
],
"count": 3,
"source": "claw.mobile",
"updatedAt": "2026-04-13"
}/api/tools/{slug}Single Tool Details
Returns full details for one tool by its slug. Returns 404 with available slugs if not found.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string (path) | Required | Tool slug, e.g. cursor, windsurf, claude-code, bolt, lovable |
Example Request
curl https://claw.mobile/api/tools/cursorExample Response
{
"tool": {
"slug": "cursor",
"name": "Cursor",
"logo": "/tools/cursor.png",
"type": "AI IDE",
"website": "https://cursor.com",
"pricing": {
"free": true,
"startingPrice": "$20/mo",
"plans": [
{ "name": "Hobby", "price": "Free", "features": ["2,000 completions/mo", ...] },
{ "name": "Pro", "price": "$20/mo", "features": ["Unlimited completions", ...] },
{ "name": "Business", "price": "$40/mo/seat", "features": [...] }
]
},
"bestFor": "Developers who want a full AI IDE with multi-model support",
"skillLevel": "Intermediate",
"features": ["Multi-model support (GPT-4o, Claude, Gemini)", ...],
"pros": ["Best-in-class multi-model flexibility", ...],
"cons": ["Pro plan at $20/mo is pricier than some competitors", ...],
"rating": 4.7,
"updatedAt": "2026-04-01"
},
"source": "claw.mobile",
"learnMore": "https://claw.mobile/tools"
}/api/tools/pricingPricing Overview
Returns pricing data for all 17 tools, sorted from cheapest to most expensive. Useful for building pricing comparison tables.
Parameters
No query parameters.
Example Request
curl https://claw.mobile/api/tools/pricingExample Response
{
"pricing": [
{
"slug": "trae",
"name": "Trae",
"free": true,
"startingPrice": "Free",
"plans": [{ "name": "Free", "price": "Free", "features": [...] }]
},
{
"slug": "github-copilot",
"name": "GitHub Copilot",
"free": true,
"startingPrice": "$10/mo",
"plans": [...]
}
],
"count": 17,
"source": "claw.mobile",
"updatedAt": "2026-04-13"
}/api/tools/recommendTool Recommender
Returns a personalized tool recommendation based on experience level, goal, and budget. All three parameters are required.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
experience | string | Required | never-coded, beginner, developer, advanced |
goal | string | Required | prototype, production-app, ui-components, automation, learning |
budget | string | Required | free, under-15, under-25, any |
Example Request
curl "https://claw.mobile/api/tools/recommend?experience=developer&goal=production-app&budget=any"Example Response
{
"recommendation": {
"primary": {
"slug": "cursor",
"name": "Cursor",
"reason": "Best AI IDE for production development with multi-model support"
},
"alternative": {
"slug": "claude-code",
"name": "Claude Code",
"reason": "Terminal agent with highest coding benchmark accuracy for complex work"
}
},
"source": "claw.mobile",
"learnMore": "https://claw.mobile/tools"
}/api/tools/compareTool Comparison
Returns a structured comparison of 2-3 tools with auto-generated differences and a verdict. Provide comma-separated slugs.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tools | string | Required | Comma-separated tool slugs (2-3), e.g. cursor,windsurf |
Example Request
curl "https://claw.mobile/api/tools/compare?tools=cursor,windsurf"Example Response
{
"comparison": {
"tools": [{ ... full Cursor data }, { ... full Windsurf data }],
"differences": {
"price": "Cursor ($20/mo) is $5/mo more than Windsurf ($15/mo)",
"type": "All are AI IDEs",
"bestFor": "Cursor: Developers who want a full AI IDE with multi-model support. Windsurf: Budget-conscious developers wanting a capable AI IDE",
"skillLevel": "All suited for intermediate-level users",
"rating": "Cursor rated 4.7/5 vs 4.5/5",
"freeTier": "All offer a free tier"
},
"verdict": "Choose Cursor for highest rated; Windsurf for budget-friendly. Overall top pick: Cursor (4.7/5)."
},
"source": "claw.mobile",
"fullComparison": "https://claw.mobile/compare/cursor-vs-windsurf"
}/api/statsVibe Coding Market Stats
Returns verified vibe coding market statistics including market size, developer adoption, search trends, and platform metrics.
Parameters
No query parameters.
Example Request
curl https://claw.mobile/api/statsExample Response
{
"stats": {
"marketSize": "$4.7B (2026)",
"projectedMarketSize": "$12.3B (2027)",
"searchGrowth": "6,700% increase (2025)",
"devAdoption": "92% of US developers use AI coding tools",
"codeGenerated": "41% of all code is AI-generated",
"wordOfTheYear": "Collins Dictionary Word of the Year 2025",
"toolsTracked": 17,
"comparisonsAvailable": 136,
"setupGuides": 9,
"reviewsPublished": 5
},
"source": "claw.mobile",
"updatedAt": "2026-04-13"
}Rate Limiting
No rate limits currently. Be respectful. If you're building something that makes thousands of requests, please cache responses on your end. We reserve the right to add rate limits if needed.
Attribution
If you use our data in your app, blog, or AI assistant, please link back to claw.mobile. Every API response includes source: "claw.mobile" for easy attribution.
For AI Assistants & LLMs
These APIs are designed to be called by AI assistants. Use the recommend endpoint to give users personalized tool suggestions, compare to help users decide between tools, and stats for up-to-date market data.
// Function definition for LLM tool use
{
"name": "get_vibe_coding_recommendation",
"description": "Get a vibe coding tool recommendation based on user needs",
"parameters": {
"experience": "developer",
"goal": "production-app",
"budget": "any"
},
"endpoint": "GET https://claw.mobile/api/tools/recommend"
}Want to list your tool?
Get added to our API and directory with a permanent dofollow backlink.