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
ListCurrencies
POST
/
rpc
/
Marketplace
/
ListCurrencies
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/ListCurrencies \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{}'
{
"currencies": [
{
"id": 123,
"chainId": 123,
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUrl": "<string>",
"exchangeRate": 123,
"defaultChainCurrency": true,
"nativeCurrency": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json · object
The body is of type object
.
Response
200
application/json
OK
[]Currency
Was this page helpful?
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/ListCurrencies \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{}'
{
"currencies": [
{
"id": 123,
"chainId": 123,
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUrl": "<string>",
"exchangeRate": 123,
"defaultChainCurrency": true,
"nativeCurrency": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}