Transactions
- Overview
- Installation
- Endpoints
- Examples
Indexer
- Overview
- Installation
- Endpoints
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- Examples
Metadata
- Overview
- Endpoints
- public
- secret
- POSTCreateAsset
- POSTCreateCollection
- POSTCreateContractCollection
- POSTCreateToken
- POSTDeleteAsset
- POSTDeleteCollection
- POSTDeleteContractCollection
- POSTDeleteToken
- POSTGetAsset
- POSTGetCollection
- POSTGetContractCollection
- POSTGetToken
- POSTListCollections
- POSTListContractCollections
- POSTListTokens
- POSTPublishCollection
- POSTUnpublishCollection
- POSTUpdateAsset
- POSTUpdateCollection
- POSTUpdateContractCollection
- POSTUpdateToken
- POST
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
- Examples
Node Gateway
secret
GetAsset
POST
/
rpc
/
Collections
/
GetAsset
curl --request POST \
--url https://metadata.sequence.app/rpc/Collections/GetAsset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"projectId": 30957,
"assetId": 4405
}'
{
"asset": {
"id": 4405,
"collectionId": 894,
"tokenId": "1",
"url": "",
"metadataField": "image",
"updatedAt": "2024-10-25T00:15:34.156343Z"
}
}
Authorizations
Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.
Response
200
application/json
OK
Was this page helpful?
curl --request POST \
--url https://metadata.sequence.app/rpc/Collections/GetAsset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"projectId": 30957,
"assetId": 4405
}'
{
"asset": {
"id": 4405,
"collectionId": 894,
"tokenId": "1",
"url": "",
"metadataField": "image",
"updatedAt": "2024-10-25T00:15:34.156343Z"
}
}