Reference
A read-only HTTP API over L'AURA's MoatRank dataset. JSON over HTTPS. Base URL https://laura.in-kluso.com/api/v1.
Pass your key as a bearer token. Keys are issued after checkout and shown only once.
curl https://laura.in-kluso.com/api/v1/trends \ -H "Authorization: Bearer laura_live_xxxxxxxx"
Every response carries X-RateLimit-Limit and X-RateLimit-Remaining. Exceeding a limit returns 429 with a Retry-After header.
| Tier | Monthly calls | Hourly burst |
|---|---|---|
| Agent Starter | 300 | 30/hr |
| Agent Professional | Unlimited | 100/hr |
| Agent Enterprise | Unlimited | 1000/hr |
/v1/projects/{id}Full MoatRank breakdown for one project. {id} accepts a slug or UUID.
{
"project_id": "coordination-mesh",
"name": "Coordination Mesh",
"category": "Agent Coordination Layers",
"moatrank_score": 84,
"certification_tier": "certified",
"rank_position": 1,
"momentum": "up",
"dimensions": {
"structural_integrity": 17,
"behavioral_coherence": 16,
"governance_maturity": 17,
"adoption_legitimacy": 18,
"composability_index": 16
},
"signals": ["Reputation-weighted routing live", "..."]
}/v1/projects/searchFilter the universe by category, moatrank_min, and free-text q. Optional limit (max 100).
// /v1/projects/search?category=marketplace&moatrank_min=70
{
"query": { "category": "marketplace", "moatrank_min": 70, "q": null },
"count": 1,
"results": [
{ "project_id": "agentfair", "name": "AgentFair",
"category": "Agent Workflow Marketplaces", "score": 77,
"certification_tier": "certified", "momentum": "up" }
]
}/v1/agents/me/positionCompetitive standing for one project within its category. Pass ?project={slug}.
// /v1/agents/me/position?project=agentfair
{
"project_id": "agentfair",
"category": "Agent Workflow Marketplaces",
"moatrank_score": 77,
"percentile": 80,
"competitive_set": [
{ "rank": 1, "project": "agentfair", "score": 77, "is_you": true }
],
"opportunities": ["Above category median — defend via composability moats."]
}/v1/trendsCategory-level momentum across the tracked universe, ranked by strength (0–10).
{
"period": "current",
"trends": [
{ "name": "Agent Coordination Layers", "strength": 8.6,
"projects_affected": 3, "avg_moatrank": 79.3,
"rising": 2, "falling": 0 }
]
}