Get token information
The GET /tokens
endpoint data
field returns a Token object if the provided combination of collection
and tokenId
matches a token in our database or null
if no token matches the filters provided.
Get token information successful response schema:
{
"success": true,
"message": null,
"data": Token | null
}
Account object schema:
Field Name | Field Type | Description |
---|---|---|
|
| The token's unique identifier across all tokens stored in our database. |
|
| The token's collection address. |
|
| The token's id. |
|
| The token's metadata URI. |
|
| The token's image URI. It will be a valid URI only if the token's metadata have the |
|
| Set to |
|
| Set to |
|
| An internal flag to related to the asset content. It can be se to |
|
| The token's name set in the metadata. If none set, it will default to |
|
| The token's description set in the metadata. |
|
| The collection object (see Collection Schema) |
|
| The attribute object is detailed below. |
Attribute object schema:
Field Name | Field Type | Description |
---|---|---|
|
| The token's trait type as defined in the metadata. |
|
| The token's trait value as defined in the metadata. |
|
| The token's trait display type as defined in the metadata. |
|
| The amount of assets with the specific trait. |
|
| The order object of the cheapest listing for the specific trait (see Orders Schema) |