# TokenGuard dYdX Analytics Endpoint

> TokenGuard dYdX 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).

Fetches dYdX decentralized exchange data including market stats, order books, trading activity, and protocol analytics via POST request

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/dydx
- 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-dydx-analytics-endpoint-7128e57a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T9gDU7ac_OjGztRFJEvOg

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-dydx-analytics-endpoint-7128e57a -d '<json body>'
```

Example prompt: Pull the latest dYdX market data for BTC-USD perpetuals — I want to see current trading volume, funding rate, and open interest from the TokenGuard dYdX endpoint.

## When to prefer this

Use this endpoint when you need real-time or near-real-time dYdX decentralized exchange data — particularly perpetual contract metrics like funding rates, open interest, and order book depth — and you are already operating within a micropayment-enabled (x402) agent framework. Prefer this over centralized exchange APIs when dYdX-specific on-chain data is required.

## Known failure modes

- Empty JSON response if no parameters match a valid dYdX market
- Payment failure if x402 micropayment of $0.01 USDC is not included or rejected
- Rate limiting or timeout if the underlying dYdX data source is unavailable
- Invalid market pair returns error or empty result
- Schema-less response makes parsing unpredictable without prior knowledge of output structure

## How this service works

dydx data for AI agents.

## Output

Returns JSON containing dYdX exchange data such as market statistics, trading volumes, funding rates, open interest, order book depth, and protocol-level analytics for the queried market or endpoint scope.

## 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-dydx-analytics-endpoint-7128e57a/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)
