> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get token events

> Gets a list of token events.

## Overview

Gets a list of token events.

## HTTP request

`POST /Agent/Tokens/GetTokenEvents`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
	"tokenId":Required(Str(PTokenId))
	"offset":Optional(Int(0 <= POffset <= 2147483647)),
	"maxCount":Optional(Int(0 < PMaxCount <= 2147483647))
}
```

## Input parameters

| Parameter | Description                                 |
| --------- | ------------------------------------------- |
| PTokenId  | ID of token.                                |
| POffset   | Offset into the list where response begins. |
| PMaxCount | Maximum number of contracts to return.      |

## Response (JSON)

```json theme={null}
{
	"Events":Required(PEvents)
}
```

## Response parameters

| Parameter | Description   |
| --------- | ------------- |
| PEvents   | Events found. |

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
