Hi,
If you want only take data from sketch lines, you can reach the data from PlanarSketch.SketchLines
Every SketchLine object contains Geometry and Geometry3d properties. If you need 2 dimension coordinates of the line you can use Geometry object, and the good news is this object is a LineSegment2d object.So you can directly reach the data about StartPoint, MinPoint, Endpoint and direction.

So for example you can reach the start point of the "sketch" entity like :
Point2d startPoint = sketch.SketchLines[LINE_ID].Geometry.StartPoint;
Also you can use these way for other sketch entities. Then the code will like this,
Point2d startPoint = sketch.SketchEntities[ENTITY_ID].Geometry.StartPoint;
Also in every Planarsketch object there are properties named
and
You can find every dimension and constraint from here.
For the origin point of the sketch there is an another property named OriginPointGeometry in PlanarSketch object.
If it is not the thing you want you can find the plane object of your sketch and get it's root point.
Point is on PlanarSketch.PlanarEntityGeometry.RootPoint
If you want to edit all of this information you have to create same type objects and fill them into the new sketch you created.
I hope this will help.
Devrim.
If my answer is solved your problem, please mark it as Solution
Freundliche Grüße / Kind Regards