# M2M Sentinel DEX Liquidity and Volume Metrics

> M2M Sentinel DEX Liquidity and Volume Metrics is a paid API for AI agents from api.m2msentinel.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns DEX liquidity and trading volume observations for tracked tokens on the Base blockchain

## Facts

- Endpoint: GET https://api.m2msentinel.com/v1/dex/metrics
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/m2m-sentinel-dex-liquidity-and-volume-metrics-8262a75d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_of0EkM9UaZUn6xnjwd5Gr

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 m2m-sentinel-dex-liquidity-and-volume-metrics-8262a75d
```

Example prompt: Pull the latest DEX liquidity and trading volume observations from M2M Sentinel for the tracked Base tokens right now.

## When to prefer this

Choose this endpoint when you need real-time DEX liquidity depth and trading volume data specifically for tokens on the Base blockchain, and you want pre-observed, structured metrics rather than querying a DEX contract directly. Prefer this over raw on-chain calls when you need fast, aggregated observations with provenance from a dedicated sentinel service.

## Known failure modes

- Token not tracked — endpoint only returns data for tokens in M2M Sentinel's tracked set
- No recent observations available — liquidity data may be stale or unavailable for low-activity tokens
- Payment failure — x402 payment of $0.01 USDC not completed, request rejected
- Rate limiting — too many requests in a short window
- Network or provider downtime — Base chain data temporarily unavailable

## How this service works

How deep is liquidity for tracked Base tokens and how much is actually trading, with the source named, for sizing an order or declining one.

## Output

Returns an array or object of DEX metrics for tracked Base tokens, including liquidity and volume observations, with a SUCCESS status indicating the data was retrieved successfully.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status"
     ],
     "properties": {
      "status": {
       "type": "string",
       "const": "SUCCESS"
      },
      "metrics": {
       "type": [
        "array",
        "object"
       ]
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/m2m-sentinel-dex-liquidity-and-volume-metrics-8262a75d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.m2msentinel.com](https://www.zero.xyz/host/api.m2msentinel.com/llms.txt)
