> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notte.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# AgentStatusResponse

## Fields

<ParamField path="agent_id" type="str" required>
  The ID of the agent
</ParamField>

<ParamField path="created_at" type="datetime" required>
  The creation time of the agent
</ParamField>

<ParamField path="session_id" type="str" required>
  The ID of the session
</ParamField>

<ParamField path="status" type="AgentStatus" required>
  The status of the agent (active or closed)
</ParamField>

<ParamField path="closed_at" type="UnionType[datetime, None]">
  The closing time of the agent
</ParamField>

<ParamField path="saved" type="bool" default="False">
  Whether the agent is saved as a workflow
</ParamField>

<ParamField path="task" type="str" required>
  The task that the agent is currently running
</ParamField>

<ParamField path="url" type="UnionType[str, None]">
  The URL that the agent started on
</ParamField>

<ParamField path="success" type="UnionType[bool, None]">
  Whether the agent task was successful. None if the agent is still running
</ParamField>

<ParamField path="answer" type="UnionType[str, None]">
  The answer to the agent task. None if the agent is still running
</ParamField>

<ParamField path="steps" type="list[Dict[str, Any]]" required>
  The steps that the agent has currently taken
</ParamField>

## Module

`notte_sdk.types`
