cURL
SearchTokens
curl --request POST \ --url https://tokens.gluex.xyz/graphql \ --header 'Content-Type: application/json' \ --data '{ "query": "query SearchTokens(\n $chain: String!\n $pattern: String!\n $limit: Int = 20\n $offset: Int = 0\n) {\n searchTokens(\n chain: $chain\n pattern: $pattern\n limit: $limit\n offset: $offset\n ) {\n items {\n tokenAddress\n name\n symbol\n decimals\n standard\n type\n priority\n branding { logoUri }\n }\n total\n hasMore\n }\n}", "variables": { "chain": "hyperevm", "pattern": "hy", "limit": 20, "offset": 0 }, "operationName": "SearchTokens"}'
{ "data": { "searchTokens": { "/* … */": {} } } }
Full GraphQL document—query, mutation, or subscription
Object containing values for the $variables declared in query
$variables
Operation name to run when query contains multiple operations
Standard GraphQL success envelope
Present only when the operation has no top-level errors
Present when GraphQL returns errors; each entry follows the GraphQL specification
Show child attributes
Was this page helpful?