> For the complete documentation index, see [llms.txt](https://cddnss.knaup.pw/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cddnss.knaup.pw/function-list/getipv6.md).

# getIpv6

### cddnss.getIpv6

Returns the external IPv6

#### Returns:

* *The external IPv6* `[Promise<string>]`

**Example:**

```javascript
cddnss.getIpv6()
  .then((ip) => {
    console.log(`Your IP is ${ip}`); // "Your IP is 2001:0db8:85a3:0000:0000:8a2e:0370:7334"
  });
```
