Tezos · Schema
Token
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Internal TzKT id (not the same as `tokenId`). **[sortable]** |
| contract | object | Contract, created the token. |
| tokenId | string | Token id, unique within the contract. **[sortable]** |
| standard | string | Token standard (`fa1.2` or `fa2`). |
| firstMinter | object | Account, minted the token first. |
| firstLevel | integer | Level of the block where the token was first seen. **[sortable]** |
| firstTime | string | Timestamp of the block where the token was first seen. |
| lastLevel | integer | Level of the block where the token was last seen. **[sortable]** |
| lastTime | string | Timestamp of the block where the token was last seen. |
| transfersCount | integer | Total number of transfers. **[sortable]** |
| balancesCount | integer | Total number of holders ever seen. **[sortable]** |
| holdersCount | integer | Total number of current holders. **[sortable]** |
| totalMinted | string | Total number of minted tokens (raw value, not divided by `decimals`). |
| totalBurned | string | Total number of burned tokens (raw value, not divided by `decimals`). |
| totalSupply | string | Total number of existing tokens (raw value, not divided by `decimals`). |
| metadata | object | Token metadata. **[sortable]** |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Token",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer",
"description": "Internal TzKT id (not the same as `tokenId`). \n**[sortable]**",
"format": "int64"
},
"contract": {
"description": "Contract, created the token.",
"oneOf": [
{
"$ref": "#/components/schemas/Alias"
}
]
},
"tokenId": {
"type": "string",
"description": "Token id, unique within the contract. \n**[sortable]**"
},
"standard": {
"type": "string",
"description": "Token standard (`fa1.2` or `fa2`)."
},
"firstMinter": {
"description": "Account, minted the token first.",
"oneOf": [
{
"$ref": "#/components/schemas/Alias"
}
]
},
"firstLevel": {
"type": "integer",
"description": "Level of the block where the token was first seen. \n**[sortable]**",
"format": "int32"
},
"firstTime": {
"type": "string",
"description": "Timestamp of the block where the token was first seen.",
"format": "date-time"
},
"lastLevel": {
"type": "integer",
"description": "Level of the block where the token was last seen. \n**[sortable]**",
"format": "int32"
},
"lastTime": {
"type": "string",
"description": "Timestamp of the block where the token was last seen.",
"format": "date-time"
},
"transfersCount": {
"type": "integer",
"description": "Total number of transfers. \n**[sortable]**",
"format": "int32"
},
"balancesCount": {
"type": "integer",
"description": "Total number of holders ever seen. \n**[sortable]**",
"format": "int32"
},
"holdersCount": {
"type": "integer",
"description": "Total number of current holders. \n**[sortable]**",
"format": "int32"
},
"totalMinted": {
"type": "string",
"description": "Total number of minted tokens (raw value, not divided by `decimals`)."
},
"totalBurned": {
"type": "string",
"description": "Total number of burned tokens (raw value, not divided by `decimals`)."
},
"totalSupply": {
"type": "string",
"description": "Total number of existing tokens (raw value, not divided by `decimals`)."
},
"metadata": {
"description": "Token metadata. \n**[sortable]**",
"nullable": true
}
}
}