Skip to main content
GET
/
optical
/
frame
/
video_single_frames
/
{data_id}
from atomscale import Client

client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
optical = results[0]  # OpticalResult
print(optical.snapshot_image_data)
{
  "video_uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "frames": [
    {
      "image_uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "processed_file_metadata": {
        "file_type": "png",
        "width": 1920,
        "height": 1080
      }
    }
  ]
}
Returns saved frames from an optical video recording, including frame image UUIDs and file metadata.
data_id
string
required
The data entry UUID for the optical video

Response

video_uuid
string
UUID of the video
frames
array
Saved video frames
from atomscale import Client

client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
optical = results[0]  # OpticalResult
print(optical.snapshot_image_data)
{
  "video_uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "frames": [
    {
      "image_uuid": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "processed_file_metadata": {
        "file_type": "png",
        "width": 1920,
        "height": 1080
      }
    }
  ]
}