# Account Token

Securely access your Token from the UbiFunction’s code, avoiding copy-pasting API tokens directly into the code, by selecting a Token in the dropdown from the panel and calling it using `_auth_token` key from the `args` input argument.

<figure><img src="https://884329393-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MhzNRg0B4ECiNXc093G%2Fuploads%2Fdcc9Od3JYamSs81XtpY6%2Fimage.png?alt=media&#x26;token=bee0a53b-1133-44f2-9329-a72550e36041" alt=""><figcaption></figcaption></figure>

For example:

{% tabs %}
{% tab title="NodeJs" %}

```javascript
function main(args) {
    token = args._auth_token;
    console.log(`The token selected is: ${token}`);
    return {}
}
```

{% endtab %}

{% tab title="Python" %}

```python
def main(args):
    token = args["_auth_token"]
    print(f"The token selected is: {token}")
    return {}
```

{% endtab %}
{% endtabs %}
