> 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/getip.md).

# getIp

### cddnss.getIp

Returns the external IP

#### Returns:

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

**Example:**

```javascript
cddnss.getIp()
  .then((ip) => {
    console.log(`Your IP is ${ip}`); // "Your IP is 0.0.0.0"
  });
```
