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

> Retrieve the RHEED pattern fingerprint as a serialized graph

Returns a computed fingerprint of the RHEED diffraction pattern as a serialized graph object. The fingerprint characterizes the surface structure by identifying nodes (diffraction features) and their spatial relationships.

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

## Response

<ResponseField name="data_id" type="string">
  Data entry UUID
</ResponseField>

<ResponseField name="processed_data_id" type="string">
  Processed data entry UUID
</ResponseField>

<ResponseField name="fingerprint" type="object">
  Serialized fingerprint graph

  <Expandable title="properties">
    <ResponseField name="nodes" type="array">
      Detected diffraction feature nodes in the pattern
    </ResponseField>

    <ResponseField name="horizontal_distances" type="array">
      Horizontal distances between detected nodes
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```python SDK theme={null}
  from atomscale import Client

  client = Client(api_key="YOUR_API_KEY")
  results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
  image = results[0]  # RHEEDImageResult
  df = image.get_pattern_dataframe()
  ```

  ```python Python theme={null}
  import requests

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "processed_data_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
    "fingerprint": {
      "nodes": [...],
      "horizontal_distances": [...]
    }
  }
  ```
</ResponseExample>
