Show live Nepal startup data on your website, blog, or dashboard. All data is free under CC BY 4.0. Just copy, paste, and go.
A clean HTML table of Nepal's top 10 startups by community signal.
<iframe src="https://nepalistartups.com/api/embed?limit=10" width="100%" height="420" style="border:none;border-radius:8px;" loading="lazy" title="Nepali Startups — Top 10" ></iframe>
Filtered to a specific sector — FinTech in this example.
<iframe src="https://nepalistartups.com/api/embed?limit=10§or=FinTech" width="100%" height="420" style="border:none;border-radius:8px;" loading="lazy" title="Nepali Startups — FinTech" ></iframe>
Programmatic access via JSON. Perfect for dashboards and custom UIs.
fetch("https://nepalistartups.com/api/data/startups.json")
.then(r => r.json())
.then(data => {
console.log(data.startups); // Array of startup objects
console.log(data.meta); // { totalStartups, totalCategories, ... }
});Subscribe to recent blog posts and top startups via RSS.
<!-- Add to your <head> --> <link rel="alternate" type="application/rss+xml" title="Nepali Startups" href="https://nepalistartups.com/feed.xml" />
Use the LLM-friendly endpoints in AI pipelines and RAG systems.
# Compact index (top 50 startups) curl https://nepalistartups.com/llms.txt # Full knowledge base (all startups + sectors + hubs) curl https://nepalistartups.com/llms-full.txt
GET /api/embedReturns an HTML table of startups. Perfect for iframes.
limit — Number of startups (1-50, default 10)sector — Filter by sector nameGET /api/data/startups.jsonFull dataset as JSON. Includes metadata, categories, and all published startups.
GET /feed.xmlRecent blog posts and top startups in standard RSS 2.0 format.
GET /llms.txt · /llms-full.txtMarkdown-optimized endpoints for AI/LLM consumption. CC BY 4.0 licensed.
/llms.txt — Compact (top 50)/llms-full.txt — Complete dumpWhen using this data, please cite:
Nepali Startups. (2026). Nepal Startup Ecosystem Registry. Retrieved from https://nepalistartups.com. License: CC BY 4.0.