DEVELOPER ACCESSOPENAPI 3.1
CLI & Public REST API
Query the live catalog of developer tools, products, and tech stacks directly from your terminal, scripts, or AI agent pipelines. No API key required for reads.
ASK AI ABOUT CLI & REST API
1. Command-Line Usage
Query the directory immediately using npx:
# Search developer tools and products npx @launchnests/cli search "vector database" # Fetch top community upvoted tools npx @launchnests/cli leaderboard --limit 10 # Inspect verified tech stack and details npx @launchnests/cli tool supabase
2. Public REST Endpoints (/v1)
GET
/v1Public API index and link directory
GET
/v1/toolsPaginated developer tools. Supports ?q=, ?category=, ?pricing=, ?sort=
GET
/v1/tools/{slug}Full tool details, website, category, and verified build counts
GET
/v1/productsPaginated developer products. Supports ?q=, ?category=, ?pricing=, ?sort=
GET
/v1/products/{slug}Product details, problem, solution, unique value, and 'Built With' tech stack
GET
/v1/search?q={query}Unified search across tools and products
GET
/v1/leaderboardCommunity rankings for top tools and products
3. Quick Curl Examples
# 1. Search for auth tools curl -sS "https://launchnests.com/v1/search?q=auth" # 2. Get tool details curl -sS "https://launchnests.com/v1/tools/supabase" # 3. Request markdown representation via content negotiation curl -sS -H "Accept: text/markdown" "https://launchnests.com/tools/supabase"