GET: Tokens
Returns token information which can be used to populate sales pages. The contract id for a contract can be found on the Collection screen in the Dashboard.
https://api.hypermint.com/v1/nft-contract/:contractId/tokens
Get Tokens
Returns all tokens related to the contract. Requires authentication for draft or deploying contracts.
Allows unauthenticated access for contracts that have been fully deployed, but only reveals information that is publicly available on the blockchain.
Parameters
Header
Parameter | Description |
---|---|
HM_ACCESS_KEY | HyperMint Access Key |
HM_ACCESS_KEY_SECRET | HyperMint Access Key Secret |
Response
Code | Meaning |
---|---|
🟢 200: OK | Responds with an interaction ID which can be used to check the status of the transaction |
🟠 404: Not Found | Unable to find token details for the give contract ID |
interface ContractTokensResponse {
tokens: ContractToken[];
};
interface ContractToken {
id: number;
totalSupply: number;
price: number;
supply?: number;
remaining?: number;
maxPerTransaction: number;
}
Feedback
Something not quite right, unclear or can't find what you are looking for? Please let us know at support.moonpay.com and we will get back to you as soon as we can.
Updated 8 months ago