Axie GraphQL Docs

GetProfileNameByRoninAddress

GetProfileNameByRoninAddress

Fetches the profile name by their Ronin address.

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": "GetProfileNameByRoninAddress",
"variables": {
"roninAddress": "0x2ebd51e17b56e9cea3317e8d13ab99ffb168427c"
},
"query": "query GetProfileNameByRoninAddress($roninAddress: String!) {\n publicProfileWithRoninAddress(roninAddress: $roninAddress) {\n accountId\n name\n __typename\n }\n}\n"
}
Full GraphQL Query Schema

 

query GetProfileNameByRoninAddress($roninAddress: String!) {
publicProfileWithRoninAddress(roninAddress: $roninAddress) {
accountId
name
__typename
}
}

Variables

Brief overview of the variable fields for this operation

VariableRequiredData Type
roninAddressYesString

Refer to the succeeding sections for more details about the variables and their valid values

RoninAddress

Ronin address of the user (hexadecimal).

Example: 0x2ebd51e17b56e9cea3317e8d13ab99ffb168427c

Edit this page on GitHub