NANDA Agent Statistics
Returns aggregate counts and metrics across all agents in the NANDA registry.
GET
/api/v1/nanda/statistics🌐 PublicExamples
- curl
- Python
- JavaScript
curl "https://nasiko.dev/api/v1/nanda/statistics"
import httpx
response = httpx.get("https://nasiko.dev/api/v1/nanda/statistics")
stats = response.json()
print(f"Total agents: {stats['total_agents']}")
print(f"Online: {stats['online_agents']}")
const res = await fetch("https://nasiko.dev/api/v1/nanda/statistics");
const stats = await res.json();
console.log(`Total agents: ${stats.total_agents}`);