Hello Dmitriy,
If you are using Professional edition of PhotoScan, you can access to the coordinates of the mesh vertices from the Console pane:
chunk = PhotoScan.app.document.chunk
vertex = chunk.model.vertices[100] #or any other index
x, y, z = vertex.coord
But please note that these coordinates are in the internal coordinate system, so if you are using referenced chunks, chunk.transform matrix should be also applied.