Hi @Joshua.mursic .
When the attached f3d file is activated and the following script is executed, the coordinate values of the origin of the red arrow sketch are displayed.

# Fusion360API Python script
import traceback
import adsk.core as core
import adsk.fusion as fusion
def run(context):
ui = core.UserInterface.cast(None)
try:
app: core.Application = core.Application.get()
ui = app.userInterface
des: fusion.Design = app.activeProduct
root: fusion.Component = des.rootComponent
targetOcc: fusion.Occurrence = root.allOccurrences.itemByName('level3:1')
targetComp: fusion.Component = targetOcc.component
nativeSketch: fusion.Sketch = targetComp.sketches[0]
proxySketch: fusion.Sketch = nativeSketch.createForAssemblyContext(targetOcc)
msgLst = [
f'nativeSketch.originPoint:{nativeSketch.originPoint.worldGeometry.asArray()}',
f'proxySketch.originPoint:{proxySketch.originPoint.worldGeometry.asArray()}',
'****',
f'nativeSketch.sketchPoints[0]:{nativeSketch.sketchPoints[0].worldGeometry.asArray()}',
f'proxySketch.sketchPoints[0]:{proxySketch.sketchPoints[0].worldGeometry.asArray()}',
]
ui.messageBox('\n'.join(msgLst))
except:
if ui:
ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))