Skip to main content
POST
/
api
/
agents
/
proof
Generate proof of contribution
curl --request POST \
  --url http://localhost:3001/api/agents/proof \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "agentId": "<string>",
  "vectorText": "<string>",
  "epochNumber": 123
}
'
{
  "success": true,
  "agentId": "<string>",
  "vectorText": "<string>",
  "epochNumber": 123,
  "proof": {},
  "verified": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
agentId
string
required
vectorText
string
required
epochNumber
integer
required

Response

OK

success
boolean
required
agentId
string
required
vectorText
string
required
epochNumber
integer
required
proof
object
required
verified
boolean
required
message
string