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

Returns the Well-Known Text (WKT) representation of a geography object.

## Signatures

```sql theme={"system"}
ST_AsText (A: Geography)
```

## Parameters

<ParamField body="A" type="Geography" required>
  The geography to serialize.
</ParamField>

## Return type

<ResponseField type="String">
  The WKT representation of the geography.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_AsText(ST_GeogFromWKT('POINT (1 2)'));
```

```
POINT (1 2)
```
