Axie GraphQL Docs
GetRecentlyLandsSold
GetRecentlyLandsSold
Fetches a list of the recently sold lands.
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": "GetRecentlyLandsSold", "variables": { "from": 0, "size": 10 }, "query": "query GetRecentlyLandsSold($from: Int, $size: Int) {\n settledAuctions {\n lands(from: $from, size: $size) {\n total\n results {\n ...LandSettledBrief\n transferHistory {\n ...TransferHistoryInSettledAuction\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n}\n\nfragment LandSettledBrief on LandPlot {\n tokenId\n landType\n col\n row\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\nfragment TransferHistoryInSettledAuction on TransferRecords {\n total\n results {\n ...TransferRecordInSettledAuction\n __typename\n }\n __typename\n}\n"}
Full GraphQL Query Schema
query GetRecentlyLandsSold($from: Int, $size: Int) { settledAuctions { lands(from: $from, size: $size) { total results { ...LandSettledBrief transferHistory { ...TransferHistoryInSettledAuction __typename } __typename } __typename } __typename }}
fragment LandSettledBrief on LandPlot { tokenId landType col row __typename}
fragment TransferRecordInSettledAuction on TransferRecord { from to txHash timestamp withPrice withPriceUsd fromProfile { name __typename } toProfile { name __typename } __typename}
fragment TransferHistoryInSettledAuction on TransferRecords { total results { ...TransferRecordInSettledAuction __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.