GET
/
v1
/
agents
/

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

name
string | null

Name of the agent

tags
string[] | null

List of tags to filter agents by

Response

200 - application/json
description
string | null

The description of the agent.

metadata_
object | null

The metadata of the agent.

user_id
string | null

The user id of the agent.

id
string

The human-friendly ID of the Agent

name
string
required

The name of the agent.

created_at
string

The datetime the agent was created.

message_ids
string[] | null

The ids of the messages in the agent's in-context memory.

memory
object

Represents the in-context memory of the agent. This includes both the Block objects (labelled by sections), as well as tools to edit the blocks.

Attributes: memory (Dict[str, Block]): Mapping from memory block section to memory block.

tools
string[]
required

The tools used by the agent.

tool_rules
object[] | null

The list of tool rules.

tags
string[] | null

The tags associated with the agent.

system
string
required

The system prompt used by the agent.

agent_type
enum<string>
required

The type of agent.

Available options:
memgpt_agent,
split_thread_agent,
o1_agent
llm_config
object
required

The LLM configuration used by the agent.

embedding_config
object
required

The embedding configuration used by the agent.