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

# Get Subagent Turn

> Retrieve a single turn from a subagent by ID, including its status and nested items array.

Use this endpoint to fetch one specific turn within a subagent. The response includes the turn metadata and the array of items that make up this turn.

## Endpoint

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

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

<ParamField path="turn_id" type="string" required>
  The turn identifier.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique turn identifier.
</ResponseField>

<ResponseField name="session_id" type="string">
  The parent session identifier.
</ResponseField>

<ResponseField name="subagent_id" type="string">
  The subagent identifier.
</ResponseField>

<ResponseField name="status" type="string">
  Turn status, for example `completed`.
</ResponseField>

<ResponseField name="items" type="array">
  Array of item objects within the turn.
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "turn_02C",
    "session_id": "sess_01J5X8",
    "subagent_id": "sub_01D",
    "status": "completed",
    "items": [
      {
        "id": "msg_02A",
        "role": "user",
        "content": "Summarize this document"
      },
      {
        "id": "msg_02B",
        "role": "assistant",
        "content": "The document discusses..."
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [List Subagent Turns](/api-reference/agent/subagents/turns.md)
- [Get Subagent](/api-reference/agent/subagents/get.md)
- [Get Agent Turn](/api-reference/agent/turns/get.md)
- [Create Aria Agent Cloud Session for an Agent](/api-reference/agent/sessions/create.md)
- [Delete an Aria Agent Cloud Session by ID](/api-reference/agent/sessions/delete.md)
