Skip to main content
GET
/
api
/
agents
List all registered agents
curl --request GET \
  --url http://localhost:3001/api/agents \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "totalAgents": 123,
  "agents": [
    {
      "agentId": "<string>",
      "totalEpochs": 123,
      "totalVectors": 123,
      "currentRoot": "<string>",
      "lastEpoch": 123,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "message": "<string>"
}

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
totalAgents
integer
required
agents
object[]
required
message
string