Skip to main content
POST
/
rheed
/
stream
/
{data_id}
/
total_frames
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()
9000
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.
data_id
string
required
The data entry UUID for the streaming session

Response

Returns the total number of frames attempted as an integer.
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()
9000