Indexer
- Overview
- Installation
- Endpoints
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- Examples
Metadata
- Overview
- Endpoints
- public
- POSTDirectoryGetCollections
- POSTDirectoryGetNetworks
- POSTEnqueueTokensForRefresh
- POSTGetContractInfoBatch
- POSTGetContractInfo
- POSTGetTokenMetadataBatch
- POSTGetTokenMetadata
- POSTRefreshTokenMetadata
- POSTSearchContractInfoBatch
- POSTSearchContractInfo
- POSTSearchTokenIDs
- POSTSearchTokenMetadata
- POSTSearchTokens
- POSTTokenCollectionFilters
- POSTRefreshAllContractTokens
- POSTRefreshContractInfo
- POSTRefreshContractTokens
- POSTSearchContracts
- POSTSearchMetadata
- POST
- secret
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
Transactions
- Overview
- Installation
- Endpoints
- Examples
Blockchain RPC
public
RefreshContractTokens
POST
/
rpc
/
Metadata
/
RefreshContractTokens
curl --request POST \
--url https://metadata.sequence.app/rpc/Metadata/RefreshContractTokens \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"chainHandle": "<string>",
"contractAddress": "<string>",
"tokenIDs": [
"<string>"
]
}'
{
"task": {
"id": 123,
"queue": "<string>",
"status": "QUEUED",
"try": 123,
"runAt": "<string>",
"lastRanAt": "<string>",
"createdAt": "<string>",
"payload": [
"<string>"
],
"hash": "<string>"
}
}
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
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://metadata.sequence.app/rpc/Metadata/RefreshContractTokens \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"chainHandle": "<string>",
"contractAddress": "<string>",
"tokenIDs": [
"<string>"
]
}'
{
"task": {
"id": 123,
"queue": "<string>",
"status": "QUEUED",
"try": 123,
"runAt": "<string>",
"lastRanAt": "<string>",
"createdAt": "<string>",
"payload": [
"<string>"
],
"hash": "<string>"
}
}