Get Token
This endpoint retrieves detailed information about a specific token, including its total supply, symbol, unlocked supply, token holders, and verification status.
URL
https://api.zelf.world/api/mina/token/:tokenId
Method
GET
Parameters
tokenId
string
The unique identifier for the token to be retrieved.
Headers
Authorization
Bearer <token>
Yes
The authorization token for access.
Example Request
Example Response
Response Details
tokenId: The unique identifier of the token.
tokenSymbol: The short symbol used to represent the token.
totalSupply: The total amount of tokens in circulation.
lockedSupply: The portion of the total supply that is currently locked.
unlockedSupply: The number of tokens available for transactions.
unlockPercent: The percentage of tokens that are unlocked.
tokenOwnerPK: The public key of the token's owner.
tokenAdminPK: The public key of the token's admin (if applicable).
tokenHoldersCount: The total number of unique token holders.
tokenHoldersCount24: The number of new token holders in the last 24 hours.
ownerName: The name of the token's owner (if available).
ownerImg: The image associated with the token's owner (if available).
createdAt: The timestamp (in milliseconds) when the token was created.
tokenType: The type of token (e.g., CUSTOM_TOKEN).
tokenName: The full name of the token.
tokenImage: A URL pointing to the image associated with the token.
isVerified: Whether the token is verified or not.
isBridge: Whether the token is a bridge token.
coingeckoCoinId: The ID of the token on Coingecko, if listed.
coinmarketCoinId: The ID of the token on CoinMarketCap, if listed.
Error Responses
401
Unauthorized. Invalid or missing token.
404
Not Found. The token ID does not exist.
500
Internal Server Error. An error occurred on the server.
Node.js - Axios Example
Status Codes
200
Success. The token data is returned.
400
Bad Request. Invalid token ID format.
401
Unauthorized. Invalid authorization token.
404
Not Found. Token ID does not exist.
500
Internal Server Error.
Notes
Ensure that the
tokenId
provided is valid and in the correct format.The API requires an Authorization token for access.
Last updated