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
GetCountOfFilteredCollectibles
POST
/
rpc
/
Marketplace
/
GetCountOfFilteredCollectibles
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetCountOfFilteredCollectibles \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"side": "unknown",
"contractAddress": "<string>",
"filter": {
"includeEmpty": true,
"searchText": "<string>",
"properties": [
{
"name": "<string>",
"type": "INT",
"min": 123,
"max": 123,
"values": [
{}
]
}
],
"marketplaces": [
"unknown"
],
"inAccounts": [
"<string>"
],
"notInAccounts": [
"<string>"
],
"ordersCreatedBy": [
"<string>"
],
"ordersNotCreatedBy": [
"<string>"
]
}
}'
{
"count": 123
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Represented as uint8 on the server side
Available options:
unknown
, listing
, offer
[]MarketplaceKind
Represented as uint32 on the server side
Available options:
unknown
, sequence_marketplace_v1
, sequence_marketplace_v2
, opensea
, magic_eden
, mintify
, looks_rare
, x2y2
, sudo_swap
, coinbase
, rarible
, nftx
, foundation
, manifold
, zora
, blur
, super_rare
, okx
, element
, aqua_xyz
, auranft_co
[]string
[]string
[]string
[]string
Response
200
application/json
OK
Was this page helpful?
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetCountOfFilteredCollectibles \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"side": "unknown",
"contractAddress": "<string>",
"filter": {
"includeEmpty": true,
"searchText": "<string>",
"properties": [
{
"name": "<string>",
"type": "INT",
"min": 123,
"max": 123,
"values": [
{}
]
}
],
"marketplaces": [
"unknown"
],
"inAccounts": [
"<string>"
],
"notInAccounts": [
"<string>"
],
"ordersCreatedBy": [
"<string>"
],
"ordersNotCreatedBy": [
"<string>"
]
}
}'
{
"count": 123
}