Agents are the core resource in Secureagentics. Each agent represents an AI system whose activity you want to monitor, govern, and audit. Use these endpoints to register new agents, retrieve their details, and remove them when they are no longer needed.Documentation Index
Fetch the complete documentation index at: https://docs.adrian.secureagentics.ai/llms.txt
Use this file to discover all available pages before exploring further.
Register an agent
POST /v1/agents
Creates a new agent and returns the agent object with its assigned ID. The name must be unique within your account.
Request body
Unique name for the agent within your account.
Human-readable description of the agent’s purpose or function.
The AI framework the agent is built on. One of:
openai, langchain, custom.Arbitrary key-value pairs for storing additional context, such as environment or team ownership. Values must be strings.
Response fields
Unique agent identifier, prefixed with
agt_.The agent’s name as provided at registration.
Human-readable description of the agent.
The AI framework associated with the agent.
ISO 8601 timestamp of when the agent was created.
Current agent status. One of:
active, inactive.cURL
List all agents
GET /v1/agents
Returns a paginated list of all agents registered in your account. Use limit and offset to page through results.
Query parameters
Maximum number of agents to return per page. Accepted range: 1–100.
Number of agents to skip before returning results. Use for pagination.
Filter agents by status. One of:
active, inactive.Response fields
Array of agent objects matching the query.
Total number of agents in your account matching the applied filters, regardless of pagination.
cURL
Get an agent
GET /v1/agents/{id}
Retrieves a single agent by its ID. Returns a 404 error if the agent does not exist.
Path parameters
The agent ID, prefixed with
agt_.Response fields
Returns a single agent object. See Register an agent for the full list of response fields.cURL
Delete an agent
DELETE /v1/agents/{id}
Permanently deletes an agent and all associated data. This action is irreversible. Returns 204 No Content on success.
Path parameters
The agent ID, prefixed with
agt_.cURL