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

# List Subagent Items

> Retrieve all raw items belonging to a specific subagent, including its messages, tool calls, and tool outputs.

This endpoint returns the low-level items that belong to a subagent rather than the parent session. Use it to debug or replay a subagent conversation.

## Endpoint

```http theme={null}
GET /v1/agents/sessions/{session_id}/subagents/{subagent_id}/items
```

## Authentication

Pass one of `Authorization: Bearer <api-key>` or `Authorization: ApiKey <key>`.

## Path Parameters

<ParamField path="session_id" type="string" required>
  The agent session identifier.
</ParamField>

<ParamField path="subagent_id" type="string" required>
  The subagent identifier.
</ParamField>

## Response

<ResponseField name="object" type="string">
  Always `list`.
</ResponseField>

<ResponseField name="data" type="array">
  Array of item objects owned by the subagent.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://agent.example.com/v1/agents/sessions/sess_01J5X8/subagents/sub_01D/items \
    -H "Authorization: Bearer <api-key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "msg_02A",
        "role": "user",
        "content": "Summarize this document"
      },
      {
        "id": "msg_02B",
        "role": "assistant",
        "content": "The document discusses..."
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [List Subagents](/api-reference/agent/subagents/list.md)
- [List Subagent Turns](/api-reference/agent/subagents/turns.md)
- [List Session Items](/api-reference/agent/items/list.md)
- [Get Subagent Turn](/api-reference/agent/subagents/turn-get.md)
- [Get Memory Item](/api-reference/agent/memory/get.md)
