Skip to main content

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.

Overview

Gets a list of token events.

HTTP request

POST /Agent/Tokens/GetTokenEvents

Authentication

Requires a valid JWT bearer token.

Request (JSON)

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

Input parameters

ParameterDescription
PTokenIdID of token.
POffsetOffset into the list where response begins.
PMaxCountMaximum number of contracts to return.

Response (JSON)

{
	"Events":Required(PEvents)
}

Response parameters

ParameterDescription
PEventsEvents found.

Notes

This endpoint uses the request schema notation described in Pattern matching.