Skip to main content
GET
/
v1
/
epochs
/
stats
Typescript (SDK)
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai";

const raijinLabsLucidAi = new RaijinLabsLucidAi();

async function run() {
  const result = await raijinLabsLucidAi.epochs.getStats();

  console.log(result);
}

run();
{
  "success": true,
  "stats": {
    "total_epochs": 123,
    "total_receipts": 123,
    "by_status": {
      "open": 123,
      "anchoring": 123,
      "anchored": 123,
      "failed": 123
    },
    "avg_receipts_per_epoch": 123,
    "last_anchor_time": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lucid.foundation/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Lucid API key (lk_live_... or lk_test_...)

Response

OK

success
boolean
required
stats
object
required