Axie GraphQL Docs

GetOverviewToday

GetOverviewToday

Fetches the market state today.

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": "GetOverviewToday",
"query": "query GetOverviewToday {\n marketStats {\n last24Hours {\n ...OverviewFragment\n __typename\n }\n last7Days {\n ...OverviewFragment\n __typename\n }\n last30Days {\n ...OverviewFragment\n __typename\n }\n __typename\n }\n}\n\nfragment OverviewFragment on SettlementStats {\n count\n axieCount\n volume\n volumeUsd\n __typename\n}\n"
}
Full GraphQL Query Schema

 

query GetOverviewToday {
marketStats {
last24Hours {
...OverviewFragment
__typename
}
last7Days {
...OverviewFragment
__typename
}
last30Days {
...OverviewFragment
__typename
}
__typename
}
}
fragment OverviewFragment on SettlementStats {
count
axieCount
volume
volumeUsd
__typename
}

Edit this page on GitHub