Transactions
- Overview
- Installation
- Endpoints
- Examples
Indexer
- Overview
- Installation
- Endpoints
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- Examples
Metadata
- Overview
- Endpoints
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
- POSTCheckoutOptionsMarketplace
- POSTCheckoutOptionsSalesContract
- POSTExecute
- POSTGenerateBuyTransaction
- POSTGenerateListingTransaction
- POSTGenerateOfferTransaction
- POSTGenerateSellTransaction
- POSTGetCollectibleHighestListing
- POSTGetCollectibleHighestOffer
- POSTGetCollectibleLowestListing
- POSTGetCollectibleLowestOffer
- POSTGetCollectible
- POSTGetCountOfAllCollectibles
- POSTGetCountOfFilteredCollectibles
- POSTGetFloorOrder
- POSTGetHighestPriceListingForCollectible
- POSTGetHighestPriceOfferForCollectible
- POSTGetLowestPriceListingForCollectible
- POSTGetLowestPriceOfferForCollectible
- POSTGetOrders
- POSTListCollectibleListings
- POSTListCollectibleOffers
- POSTListCollectiblesWithLowestListing
- POSTListCollectiblesWithHighestOffer
- POSTListCollectibles
- POSTListCurrencies
- POSTListListingsForCollectible
- POSTListOffersForCollectible
- POST
- Examples
Node Gateway
Endpoints
GetCollectible
POST
/
rpc
/
Marketplace
/
GetCollectible
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetCollectible \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"contractAddress": "<string>",
"tokenId": "<string>"
}'
{
"metadata": {
"tokenId": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"video": "<string>",
"audio": "<string>",
"properties": {},
"attributes": [
{}
],
"imageData": "<string>",
"externalUrl": "<string>",
"backgroundColor": "<string>",
"animationUrl": "<string>",
"decimals": 123,
"updatedAt": "<string>",
"assets": [
{
"id": 123,
"collectionId": 123,
"tokenId": "<string>",
"url": "<string>",
"metadataField": "<string>",
"filename": "<string>",
"filesize": 123,
"mimeType": "<string>",
"width": 123,
"height": 123,
"updatedAt": "<string>"
}
]
}
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Response
200
application/json
OK
[]Asset
Was this page helpful?
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetCollectible \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"contractAddress": "<string>",
"tokenId": "<string>"
}'
{
"metadata": {
"tokenId": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"video": "<string>",
"audio": "<string>",
"properties": {},
"attributes": [
{}
],
"imageData": "<string>",
"externalUrl": "<string>",
"backgroundColor": "<string>",
"animationUrl": "<string>",
"decimals": 123,
"updatedAt": "<string>",
"assets": [
{
"id": 123,
"collectionId": 123,
"tokenId": "<string>",
"url": "<string>",
"metadataField": "<string>",
"filename": "<string>",
"filesize": 123,
"mimeType": "<string>",
"width": 123,
"height": 123,
"updatedAt": "<string>"
}
]
}
}