# tracker

Learn how to access the tracker instance.

This property holds a reference to the tracker instance.

Please refer to the [Tracker API reference](/reference/sdk/javascript/api/tracker) for more details.

## Signature

This property has the following signature:

```ts
public get tracker(): Tracker
```

## Example

Here is a basic example of how to use this property:

```ts
import {croct} from '@croct/plug';

croct.tracker.track('goalCompleted', {goalId: 'newsletter-sign-up'});
```
