GET
/
v1
/
token
/
{chain}
/
{tokenAddress}
/
mintAndBurn
Token - Mint and Burn
curl --request GET \
  --url https://api-dex.chainstream.io/v1/token/{chain}/{tokenAddress}/mintAndBurn \
  --header 'Authorization: Bearer <token>'
{
  "hasNext": false,
  "hasPrev": false,
  "startCursor": "<string>",
  "endCursor": "<string>",
  "total": 123,
  "data": [
    {
      "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "blockHeight": 123456789,
      "blockSlot": 123456789,
      "blockHash": "5J7X9K2M4N6P8Q",
      "blockTimestamp": 1754055151,
      "transactionSignature": "3A7B9C1D2E4F6G8",
      "type": "create"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

A chain name listed in supported networks

Available options:
sol,
base,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
ethereum,
zksync,
sui
tokenAddress
string
required

An address of a token

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Query Parameters

cursor
string

Pagination cursor

limit
number
default:20

Number of results per page

Required range: 1 <= x <= 100
direction
enum<string>
default:next

Pagination direction (next or prev)

Available options:
next,
prev
type
enum<string>
required

Type of operation to filter (all, mint, or burn)

Available options:
all,
mint,
burn
Example:

"all"

Response

200 - application/json
data
object[]
required

Array of token creation data

hasNext
boolean
default:false

Indicates if there are more results

hasPrev
boolean
default:false

Indicates if there are previous results

startCursor
string

Cursor for first item in current page

endCursor
string

Cursor for last item in current page

total
number

Total number of items