Skip to main content
POST
/
v2
/
reputation
/
{agentId}
/
compute
Typescript (SDK)
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai";

const raijinLabsLucidAi = new RaijinLabsLucidAi();

async function run() {
  const result = await raijinLabsLucidAi.reputation.lucidComputeReputation({
    agentId: "<id>",
  });

  console.log(result);
}

run();
{
  "success": true,
  "algorithmId": "<string>",
  "agentId": "<string>",
  "score": {
    "overall": 50,
    "components": {},
    "computedAt": 123,
    "metadata": {}
  }
}

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_...)

Path Parameters

agentId
string
required

Agent identifier for reputation computation

Body

application/json
algorithmId
string

Algorithm to use (default: receipt-volume-v1)

context
object

Optional context for the computation (chain IDs, time range, etc.)

Response

Score computed

success
boolean
required
algorithmId
string
required
agentId
string
required
score
object
required