アナリティクス
- 概要
- エンドポイント
- 例
メタデータ
- 概要
- エンドポイント
- 例
インフラストラクチャ
- 概要
- エンドポイント
ビルダー
- 概要
- エンドポイント
マーケットプレイス
- 概要
- エンドポイント
- 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
- 例
ブロックチェーンRPC
エンドポイント
GetOrders
POST
/
rpc
/
Marketplace
/
GetOrders
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetOrders \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"input": [
{
"contractAddress": "<string>",
"orderId": "<string>",
"marketplace": "unknown"
}
],
"page": {
"page": 123,
"pageSize": 123,
"more": true,
"sort": [
{
"column": "<string>",
"order": "DESC"
}
]
}
}'
{
"orders": [
{
"id": 123,
"collectionId": 123,
"collectibleId": 123,
"orderId": "<string>",
"marketplace": "unknown",
"source": "unknown",
"side": "unknown",
"status": "unknown",
"chainId": 123,
"originName": "<string>",
"collectionContractAddress": "<string>",
"tokenId": "<string>",
"createdBy": "<string>",
"priceAmount": "<string>",
"priceAmountFormatted": "<string>",
"priceAmountNet": "<string>",
"priceAmountNetFormatted": "<string>",
"priceCurrencyAddress": "<string>",
"priceDecimals": 123,
"priceUSD": 123,
"priceUSDFormatted": "<string>",
"quantityInitial": "<string>",
"quantityInitialFormatted": "<string>",
"quantityRemaining": "<string>",
"quantityRemainingFormatted": "<string>",
"quantityAvailable": "<string>",
"quantityAvailableFormatted": "<string>",
"quantityDecimals": 123,
"feeBps": 123,
"feeBreakdown": [
{
"kind": "<string>",
"recipientAddress": "<string>",
"bps": 123
}
],
"validFrom": "<string>",
"validUntil": "<string>",
"blockNumber": 123,
"orderCreatedAt": "<string>",
"orderUpdatedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
],
"page": {
"page": 123,
"pageSize": 123,
"more": true,
"sort": [
{
"column": "<string>",
"order": "DESC"
}
]
}
}
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
.
このページは役に立ちましたか?
curl --request POST \
--url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetOrders \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"input": [
{
"contractAddress": "<string>",
"orderId": "<string>",
"marketplace": "unknown"
}
],
"page": {
"page": 123,
"pageSize": 123,
"more": true,
"sort": [
{
"column": "<string>",
"order": "DESC"
}
]
}
}'
{
"orders": [
{
"id": 123,
"collectionId": 123,
"collectibleId": 123,
"orderId": "<string>",
"marketplace": "unknown",
"source": "unknown",
"side": "unknown",
"status": "unknown",
"chainId": 123,
"originName": "<string>",
"collectionContractAddress": "<string>",
"tokenId": "<string>",
"createdBy": "<string>",
"priceAmount": "<string>",
"priceAmountFormatted": "<string>",
"priceAmountNet": "<string>",
"priceAmountNetFormatted": "<string>",
"priceCurrencyAddress": "<string>",
"priceDecimals": 123,
"priceUSD": 123,
"priceUSDFormatted": "<string>",
"quantityInitial": "<string>",
"quantityInitialFormatted": "<string>",
"quantityRemaining": "<string>",
"quantityRemainingFormatted": "<string>",
"quantityAvailable": "<string>",
"quantityAvailableFormatted": "<string>",
"quantityDecimals": 123,
"feeBps": 123,
"feeBreakdown": [
{
"kind": "<string>",
"recipientAddress": "<string>",
"bps": 123
}
],
"validFrom": "<string>",
"validUntil": "<string>",
"blockNumber": 123,
"orderCreatedAt": "<string>",
"orderUpdatedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
],
"page": {
"page": 123,
"pageSize": 123,
"more": true,
"sort": [
{
"column": "<string>",
"order": "DESC"
}
]
}
}