# TokenGuard GMX Analytics Endpoint

> TokenGuard GMX Analytics Endpoint is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves GMX decentralized perpetuals exchange data including trading metrics, liquidity, and market analytics via the TokenGuard DeFi intelligence API

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/gmx
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-gmx-analytics-endpoint-e716b750
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ziicJ1fu_Jv3HRyACk5vq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tokenguard-gmx-analytics-endpoint-e716b750 -d '<json body>'
```

Example prompt: Pull the latest GMX protocol analytics from TokenGuard — I want to see current trading volume, open interest, and liquidity pool stats for the GMX perpetuals exchange.

## When to prefer this

Use this endpoint when you need structured, agent-ready GMX protocol analytics without building your own on-chain data pipeline. Prefer it over raw RPC calls or TheGraph queries when you want a simple pay-per-call model with no subscription setup. Ideal for AI agents that need periodic GMX market intelligence as part of a broader DeFi monitoring or trading research workflow.

## Known failure modes

- Empty JSON response if GMX subgraph or data source is unavailable
- Payment failure if x402 micropayment of $0.01 USDC is not properly attached
- Timeout if on-chain data indexing is lagging
- Stale data if the underlying blockchain indexer has not caught up

## How this service works

gmx data for AI agents.

## Output

Returns a JSON object containing GMX protocol data such as trading volume, open interest, liquidity pool depth, fee metrics, and other on-chain analytics sourced from the GMX decentralized perpetuals exchange.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-gmx-analytics-endpoint-e716b750/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
