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
- POSTGenerateBuyTransaction
- POSTGenerateListingTransaction
- POSTGenerateOfferTransaction
- POSTGenerateSellTransaction
- POSTGenerateCancelTransaction
- POSTGetCollectible
- POSTGetCountOfAllCollectibles
- POSTGetCountOfFilteredCollectibles
- POSTGetFloorOrder
- POSTGetHighestPriceListingForCollectible
- POSTGetHighestPriceOfferForCollectible
- POSTGetLowestPriceListingForCollectible
- POSTGetLowestPriceOfferForCollectible
- POSTGetOrders
- POSTListCollectibles
- POSTListCurrencies
- POSTListListingsForCollectible
- POSTListOffersForCollectible
- POST
Transactions
- Overview
- Installation
- Endpoints
- Examples
Blockchain RPC
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>"
],
"inCurrencyAddresses": [
"<string>"
],
"notInCurrencyAddresses": [
"<string>"
]
}
}'
{
"count": 123
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Response
200
application/json
OK
The response is of type object
.
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>"
],
"inCurrencyAddresses": [
"<string>"
],
"notInCurrencyAddresses": [
"<string>"
]
}
}'
{
"count": 123
}
Assistant
Responses are generated using AI and may contain mistakes.