> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/standard-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/standard-apis/api-docs/php/setnagurl.md).

# setNAGURL()

**Method signature**

```php
public function setNAGURL($NURL='https://nag.circularlabs.io/NAG.php?cep=') 
```

**Parameters**

| Name   | Type   | Description |
| ------ | ------ | ----------- |
| `nURL` | string | nURL        |

**Example**

```php
<?php
require 'vendor/autoload.php';
use CircularProtocol\Api\CircularProtocolAPI;

$circular = new CircularProtocolAPI();
$text = "your_nag_url";

$circular->setNAGURL($text);
```
