Transactions
- Overview
- Installation
- Endpoints
- Examples
Indexer
- Overview
- Installation
- Endpoints
- public
- POSTGetNativeTokenBalance
- POSTGetTokenBalancesSummary
- POSTGetTokenBalancesDetails
- POSTGetTokenBalancesByContract
- POSTGetTokenBalances
- POSTGetTokenSupplies
- POSTGetTokenSuppliesMap
- POSTGetBalanceUpdates
- POSTGetTransactionHistory
- POSTFetchTransactionReceipt
- POSTFetchTransactionReceiptWithFilter
- POSTSubscribeReceipts
- POSTSubscribeEvents
- POSTSubscribeBalanceUpdates
- POST
- secret
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- Examples
Metadata
- Overview
- Endpoints
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
- Examples
Node Gateway
public
GetTokenSuppliesMap
On Sepolia Mainnet, get the token supplies of the minted tokens for a contract address and token ID mapping
POST
/
rpc
/
Indexer
/
GetTokenSuppliesMap
curl --request POST \
--url https://amoy-indexer.sequence.app/rpc/Indexer/GetTokenSuppliesMap \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"tokenMap": {},
"includeMetadata": true,
"metadataOptions": {
"verifiedOnly": true,
"unverifiedOnly": true,
"includeContracts": [
"<string>"
]
}
}'
{
"supplies": {}
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Response
200
application/json
OK
map<string,[]TokenSupply>
[]TokenSupply
map<string,any>
[]Asset
Was this page helpful?
curl --request POST \
--url https://amoy-indexer.sequence.app/rpc/Indexer/GetTokenSuppliesMap \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"tokenMap": {},
"includeMetadata": true,
"metadataOptions": {
"verifiedOnly": true,
"unverifiedOnly": true,
"includeContracts": [
"<string>"
]
}
}'
{
"supplies": {}
}