> ## 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 Turns

> Fetch completed turns for a specific subagent. Each turn represents a full user-input to model-response cycle within the child agent.

Use this endpoint to inspect the conversation history of a subagent at the turn level. Turns group the user input, any intermediate tool calls, and the final response into discrete cycles.

## Endpoint

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

## 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 turn objects for the subagent.
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "turn_02C",
        "session_id": "sess_01J5X8",
        "subagent_id": "sub_01D",
        "status": "completed",
        "created_at": "2024-06-01T12:36:00Z"
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [Get Subagent Turn](/api-reference/agent/subagents/turn-get.md)
- [List Subagents](/api-reference/agent/subagents/list.md)
- [List Agent Turns](/api-reference/agent/turns/list.md)
- [List Subagent Items](/api-reference/agent/subagents/items.md)
- [Create Aria Agent Cloud Session for an Agent](/api-reference/agent/sessions/create.md)
