Reference

Agent Intelligence API

A read-only HTTP API over L'AURA's MoatRank dataset. JSON over HTTPS. Base URL https://laura.in-kluso.com/api/v1.

Authentication

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"

Rate limits

Every response carries X-RateLimit-Limit and X-RateLimit-Remaining. Exceeding a limit returns 429 with a Retry-After header.

TierMonthly callsHourly burst
Agent Starter30030/hr
Agent ProfessionalUnlimited100/hr
Agent EnterpriseUnlimited1000/hr

Endpoints

GET/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", "..."]
}
GET/v1/projects/search

Filter 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" }
  ]
}
GET/v1/agents/me/position

Competitive 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."]
}
GET/v1/trends

Category-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 }
  ]
}

Ready to build? Open your dashboard or see pricing.