AUGUR Developer Platform

Use AUGUR as XRPL intelligence infrastructure.

AUGUR is not just a UI. It is an XRPL intelligence engine that can power apps, dashboards, workflows, bots, research pipelines, and internal tools through structured API access.

Read-only Public ledger only Structured report engine Issuer-state aware Blackhole-aware

What developers get

Developer tier turns AUGUR into API-first XRPL intelligence infrastructure.

API Access

Structured endpoints

Use the same report engine that powers the AUGUR interface, but directly in your app or workflow.

Integrations

Higher limits

Built for bots, dashboards, analytics products, internal monitoring tools, and research systems.

Roadmap

Platform expansion

Wallet intelligence first. Then issuer intelligence, token analytics, watchlists, alerts, and premium data surfaces.

Core live endpoints

/api/health

Runtime health and availability check for services and integrations.

/api/version

Backend release visibility for versioning and deployment tracking.

/api/report

Canonical intelligence response with classification, signals, activity, risk, and statement layers.

/api/classification

Wallet classification surface for fast categorization workflows.

/api/statement

Plain-English interpretation layer for readable outputs.

/api/activity

Activity summary endpoint for behavioral snapshots.

/api/risk

Risk-focused output for monitoring and review pipelines.

Current engine shape

apps/api/src/index.ts

engine/
  xrplReader.ts
  signalExtractor.ts
  activityEngine.ts
  classificationEngine.ts
  riskEngine.ts
  statementEngine.ts
  reportEngine.ts

utils/
  validateAddress.ts
  response.ts

What makes AUGUR useful

  • It reads public XRPL wallets and explains what they are doing in plain English.
  • It detects issuer-state behavior, including blackholed issuer patterns.
  • It turns raw ledger behavior into structured intelligence your own products can use.
  • It gives you a path to build dashboards, bots, alerts, research tools, and internal monitoring around one engine.

Who this tier is for

  • Internal toolsUse AUGUR inside treasury, research, compliance, or operations workflows.
  • Dashboards and analyticsBuild frontends, terminals, and monitoring systems on top of structured intelligence.
  • Bots and automationUse endpoint outputs to trigger actions, flags, or notifications.
  • XRPL infrastructure usersTurn AUGUR into a reusable intelligence layer inside your own stack.

Example response shape

{
  "ok": true,
  "address": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
  "network": "xrpl-mainnet",
  "classification": "Exchange Wallet",
  "confidence": "high",
  "signals": [
    "high_transaction_count",
    "large_balance_profile",
    "issuer_state_detected"
  ],
  "activity": {
    "recentTransactions": 25,
    "trustlines": 9
  },
  "risk": {
    "score": 28,
    "level": "low"
  },
  "statement": "This wallet appears highly active and operational, with behavior consistent with a known service or exchange-style profile."
}