> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_StartPoint

Returns first point of given linestring.

<img src="https://mintcdn.com/wherobots/wLm_IRUSNlHZTHJP/images/sql-functions/ST_StartPoint/ST_StartPoint.svg?fit=max&auto=format&n=wLm_IRUSNlHZTHJP&q=85&s=b3573811869779c1201d463a53e114dd" alt="ST_StartPoint" width="500" height="300" data-path="images/sql-functions/ST_StartPoint/ST_StartPoint.svg" />

## Signatures

```sql theme={"system"}
ST_StartPoint(geom: Geometry)
```

## Parameters

<ParamField body="geom" type="Geometry" required>
  The input geometry.
</ParamField>

## Return type

<ResponseField type="Geometry">
  The resulting geometry.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_StartPoint(ST_GeomFromText('LINESTRING(100 150,50 60, 70 80, 160 170)'))
```

```
POINT(100 150)
```
