Endpoints
ListCurrencies
Transacciones
- Resumen
- Instalación
- Endpoints
- Ejemplos
Indexador
- Resumen
- Instalación
- Endpoints
- Ejemplos
Gateway del Indexador
Analíticas
- Descripción general
- Endpoints
- Ejemplos
Metadatos
- Resumen
- Endpoints
- Ejemplos
Infraestructura
- Resumen
- Endpoints
Builder
- Resumen
- Endpoints
Marketplace
- Resumen
- Endpoints
- POSTCheckoutOptionsMarketplace
- POSTCheckoutOptionsSalesContract
- Execute
- POSTGenerateBuyTransaction
- POSTGenerateListingTransaction
- POSTGenerateOfferTransaction
- POSTGenerateSellTransaction
- Get collectible highest listing
- Get collectible highest offer
- Get collectible lowest listing
- Get collectible lowest offer
- POSTGetCollectible
- POSTGetCountOfAllCollectibles
- POSTGetCountOfFilteredCollectibles
- POSTGetFloorOrder
- POSTGetHighestPriceListingForCollectible
- POSTGetHighestPriceOfferForCollectible
- POSTGetLowestPriceListingForCollectible
- POSTGetLowestPriceOfferForCollectible
- POSTGetOrders
- List collectible listings
- List collectible offers
- List collectibles with lowest listing
- List collectibles with highest offer
- POSTListCollectibles
- POSTListCurrencies
- POSTListListingsForCollectible
- POSTListOffersForCollectible
- POST
- Ejemplos
RPC Blockchain
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>",
"status": "unknown",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUrl": "<string>",
"exchangeRate": 123,
"defaultChainCurrency": true,
"nativeCurrency": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"refreshMetadataJob": 123
}
]
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json · object
Response
200
application/json
OK
The response is of type object
.
¿Esta página le ayudó?
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>",
"status": "unknown",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUrl": "<string>",
"exchangeRate": 123,
"defaultChainCurrency": true,
"nativeCurrency": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"refreshMetadataJob": 123
}
]
}