Axie GraphQL Docs
GetRecentlyBundlesSold
GetRecentlyBundlesSold
Fetches a list of the recently sold bundles.
Endpoint (Updated)
https://graphql-gateway.axieinfinity.com/graphql
Body
You can modify the query string to include fields that you want to be included or not. Refer to the GraphQL Schema below for a full overview.
{ "operationName": "GetRecentlyBundlesSold", "variables": { "from": 0, "size": 10 }, "query": "query GetRecentlyBundlesSold($from: Int, $size: Int) {\n settledAuctions {\n bundles(from: $from, size: $size) {\n total\n results {\n listingIndex\n ...BundleDetail\n __typename\n }\n __typename\n }\n __typename\n }\n}\n\nfragment BundleDetail on Bundle {\n name\n owner\n auction {\n ...AxieAuction\n __typename\n }\n items {\n ...LandBundleBrief\n ...ItemBundleBrief\n __typename\n }\n transferHistory {\n ...TransferHistoryInSettledAuction\n __typename\n }\n __typename\n}\n\nfragment LandBundleBrief on LandPlot {\n landType\n row\n col\n __typename\n}\n\nfragment ItemBundleBrief on LandItem {\n landType\n name\n itemAlias\n rarity\n figureURL\n tokenId\n itemId\n __typename\n}\n\nfragment AxieAuction on Auction {\n startingPrice\n endingPrice\n startingTimestamp\n endingTimestamp\n duration\n timeLeft\n currentPrice\n currentPriceUSD\n suggestedPrice\n seller\n listingIndex\n state\n __typename\n}\n\nfragment TransferHistoryInSettledAuction on TransferRecords {\n total\n results {\n ...TransferRecordInSettledAuction\n __typename\n }\n __typename\n}\n\nfragment TransferRecordInSettledAuction on TransferRecord {\n from\n to\n txHash\n timestamp\n withPrice\n withPriceUsd\n fromProfile {\n name\n __typename\n }\n toProfile {\n name\n __typename\n }\n __typename\n}\n"}
Full GraphQL Query Schema
query GetRecentlyBundlesSold($from: Int, $size: Int) { settledAuctions { bundles(from: $from, size: $size) { total results { listingIndex ...BundleDetail __typename } __typename } __typename }}
fragment BundleDetail on Bundle { name owner auction { ...AxieAuction __typename } items { ...LandBundleBrief ...ItemBundleBrief __typename } transferHistory { ...TransferHistoryInSettledAuction __typename } __typename}
fragment LandBundleBrief on LandPlot { landType row col __typename}
fragment ItemBundleBrief on LandItem { landType name itemAlias rarity figureURL tokenId itemId __typename}
fragment AxieAuction on Auction { startingPrice endingPrice startingTimestamp endingTimestamp duration timeLeft currentPrice currentPriceUSD suggestedPrice seller listingIndex state __typename}
fragment TransferHistoryInSettledAuction on TransferRecords { total results { ...TransferRecordInSettledAuction __typename } __typename}
fragment TransferRecordInSettledAuction on TransferRecord { from to txHash timestamp withPrice withPriceUsd fromProfile { name __typename } toProfile { name __typename } __typename}
Variables
Brief overview of the variable fields for this operation
Refer to the succeeding sections for more details about the variables and their valid values
From
Offset index of the results.
Any integer value. Signed or unsigned.
Size
Size of the result. The max size can vary based on the requesting source.
Edit this page on GitHubAny integer value. Signed or unsigned.