> ## 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 tokens

> Gets a list of tokens on the Neuron owned by the account.

## Overview

Gets a list of tokens on the Neuron owned by the account.

## HTTP request

`POST /Agent/Tokens/GetTokens`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
	"offset":Optional(Int(0 <= POffset <= 2147483647)),
	"maxCount":Optional(Int(0 < PMaxCount <= 2147483647)),
	"references":Optional(Boolean(PReferences))
}
```

## Input parameters

| Parameter   | Description                                                                                        |
| ----------- | -------------------------------------------------------------------------------------------------- |
| POffset     | Offset into the list where response begins.                                                        |
| PMaxCount   | Maximum number of contracts to return.                                                             |
| PReferences | If token references is sufficient (true, default), or if entire tokens are to be returned (false). |

## Response (JSON)

```json theme={null}
{
	"Tokens":Required(PTokens)
}
```

## Response parameters

| Parameter | Description   |
| --------- | ------------- |
| PTokens   | Tokens found. |

## Notes

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