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

# Get RHEED Stream Total Frames

> Retrieve the total number of frames the client attempted to send for a RHEED stream

Returns the total number of frames the client attempted to send for a RHEED stream. This endpoint uses `POST` even though it only reads data.

<ParamField path="data_id" type="string" required>
  The data entry UUID for the streaming session
</ParamField>

## Response

Returns the total number of frames attempted as an integer.

<RequestExample>
  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://api.atomscale.ai/rheed/stream/d290f1ee-6c54-4b01-90e6-d701748f0851/total_frames",
      headers={"X-API-KEY": "YOUR_API_KEY"}
  )
  total_frames = response.json()
  ```

  ```bash cURL theme={null}
  curl -X POST "https://api.atomscale.ai/rheed/stream/d290f1ee-6c54-4b01-90e6-d701748f0851/total_frames" \
    -H "X-API-KEY: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  9000
  ```
</ResponseExample>
