Skip to main content

Asset Metadata

This API allows you to get full metadata of a blockchain asset, including both on-chain information (data stored on the blockchain) and off-chain information (documents stored in DocumentDB). Metadata provides all the details needed to verify the authenticity and integrity of the asset.

The user can request metadata by providing the unique asset ID.

📘 Learn more about meta data.

Endpoint​

GET /assets/{uniqueAssetId}/metadata

Parameters​

ParameterTypeDescriptionMandatory
uniqueAssetIdstring(Hex)Unique identifier of the asset✅

Response Structure​

The method returns the following fields:

General Asset Information

ParameterTypeDescription
AssetNamestringName of the asset
BlockchainNamestringName of the blockchain network where the asset is stored
IssuerAddressstring (Hex)Address of the asset issuer
ContractAddressstring (Hex)Smart contract address managing the asset
UniqueAssetIdstring (Hex)Unique identifier of the asset
CreationBlockReferencestringBlockchain block number where the asset was registered
BlockchainTransactionIdstring (Hex)Hash of the registration transaction
OriginalDocumentHashstring (Hex)Cryptographic hash of the original document
OriginalDocumentDatastring (Base64)Base64-encoded original document data
TransactionIdstring (GUID)TEOS transaction ID
AmendmentsarrayList of amendments (can be empty)

Amendments (Changes)​

Each amendment has the following structure:

ParameterTypeDescription
AmendmentIdstring (Hex)Unique identifier of the amendment
BlockReferencestringBlockchain block number where the amendment was recorded
BlockchainTransactionIdstring (Hex)Hash of the amendment transaction
TransactionIdstring (GUID)TEOS transaction ID
Hashstring (Hex)Cryptographic hash of the amendment document
Datastring (Base64)Base64-encoded amendment document

Responses​

CodeDescription
200OK