Skip to main content
GET
/
api
/
agents
/
history
/
{tenantId}
Get agent execution history for a tenant
curl --request GET \
  --url http://localhost:3001/api/agents/history/{tenantId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "tenantId": "<string>",
  "history": [
    {}
  ],
  "stats": {},
  "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_...)

Path Parameters

tenantId
string
required

Tenant identifier for execution history lookup

Query Parameters

limit
integer

Maximum number of history entries to return

Required range: x >= 1

Response

OK

success
boolean
required
tenantId
string
required
history
object[]
required
stats
object
message
string