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

> Retrieve presigned URLs for the clustered video of a RHEED stream

Retrieves presigned URLs for the clustered video produced from a RHEED stream and its metadata. Returns `null` if no video exists yet.

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

## Response

<ResponseField name="video_url" type="string">
  Presigned GET URL for the clustered video
</ResponseField>

<ResponseField name="metadata_url" type="string">
  Presigned HEAD URL for the video metadata
</ResponseField>

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

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "video_url": "https://storage.atomscale.ai/clustered/d290f1ee-6c54-4b01-90e6-d701748f0851.mp4?...",
    "metadata_url": "https://storage.atomscale.ai/clustered/d290f1ee-6c54-4b01-90e6-d701748f0851.json?..."
  }
  ```
</ResponseExample>
