> For the complete documentation index, see [llms.txt](https://centr.gitbook.io/netcs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://centr.gitbook.io/netcs/api/functions/statsget.md).

# StatsGet()

Before calling the function make sure you have the Connector object initialized.&#x20;

{% hint style="danger" %}
This Function is not been implemented yet
{% endhint %}

{% content-ref url="/pages/-MgM38pBUeXL96\_AW6Jy" %}
[Understanding Connector Object](/netcs/getting-started/understanding-connector-object.md)
{% endcontent-ref %}

## Function Call&#x20;

```csharp
StatsGet();
```

{% hint style="info" %}
Return value of function: [StatsGetResult](/netcs/api/result-types/statsgetresult.md)
{% endhint %}

## Example

{% tabs %}
{% tab title="C#" %}

```csharp
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.StatsGetResult Stats_Data = connect_.StatsGet();
Console.WriteLine(Stats_Data);
```

{% endtab %}

{% tab title="Python" %}

```python
Connect_ =  Connector("165.22.212.253:9090")
print(Connect_.StatsGet())
```

{% endtab %}

{% tab title="Javascript" %}

```javascript
var connect_ = new Connector("194.163.152.177", 9091);
connect_.StatsGet().then((res) => {connect_.Close();console.log(res); });
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Return value of function: [StatsGetResult](/netcs/api/result-types/statsgetresult.md)
{% endhint %}

#### Output of Example

Output is printed via ObjectDumper

```scheme
{StatsGetResult}
  Status: {APIResponse}
    Code: 2
    Message: "Not Implemented: "
  Stats: ...
```
