Axie GraphQL Docs
GetRecentlyItemList
GetRecentlyItemList
Fetches a list of the recently listed items.
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": "GetRecentlyItemList", "variables": { "from": 0, "size": 10, "sort": "Latest" }, "query": "query GetRecentlyItemList($from: Int, $size: Int, $sort: SortBy) {\n items(from: $from, size: $size, sort: $sort) {\n results {\n ...RecentlyItem\n __typename\n }\n __typename\n }\n}\n\nfragment RecentlyItem on LandItem {\n landType\n rarity\n name\n figureURL\n itemId\n itemId\n itemAlias\n auction {\n ...AxieAuction\n __typename\n }\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"}
Full GraphQL Query Schema
query GetRecentlyItemList($from: Int, $size: Int, $sort: SortBy) { items(from: $from, size: $size, sort: $sort) { results { ...RecentlyItem __typename } __typename }}
fragment RecentlyItem on LandItem { landType rarity name figureURL itemId itemId itemAlias auction { ...AxieAuction __typename } __typename}
fragment AxieAuction on Auction { startingPrice endingPrice startingTimestamp endingTimestamp duration timeLeft currentPrice currentPriceUSD suggestedPrice seller listingIndex state __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.
Any integer value. Signed or unsigned.
Sort
Sorting option of the results
Edit this page on GitHubPriceAsc, PriceDesc, IdAsc, IdDesc, Latest