# HYPERNATT MM-Hunt Market Microstructure Scanner

> HYPERNATT MM-Hunt Market Microstructure Scanner is a paid API for AI agents from hypernatt.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a market-maker hunt score, directional pressure side, and nearby liquidity cluster count for BTC, indicating likely stop-hunt or liquidity sweep zones

## Facts

- Endpoint: GET https://hypernatt.com/api/m2m/mm-hunt
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hypernatt-mm-hunt-market-microstructure-scanner-de39a149
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FtvTvWkd3PzJPNcbPMQ0y

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 hypernatt-mm-hunt-market-microstructure-scanner-de39a149
```

Example prompt: What's the NATT mm-hunt score for BTC right now — is there downward pressure and how many liquidity clusters are nearby?

## When to prefer this

Use this endpoint when you need a real-time, pre-computed market-maker hunt signal for BTC specifically — especially if you want to detect stop-hunt zones or nearby liquidity clusters without doing your own order book analysis. Prefer over raw order book feeds when you want a single scored summary rather than raw data.

## Known failure modes

- Invalid or missing method enum returns schema validation error
- Service unavailable if NATT engine is offline
- Payment failure (402) if USDC balance is insufficient
- Stale data if market feed is delayed

## How this service works

Pay $0.001 USDC to access: BTC trading signal — market-maker hunt & liquidation-pressure score: hunt direction, pressure side, nearby liquidation clusters. Read-only, not trade advice.

## Output

Returns a JSON object with ok status, the symbol (e.g. BTC), an mm_hunt_score (0-100 integer indicating market-maker hunt intensity), pressure_side ('up' or 'down'), and liq_clusters_nearby (integer count of nearby liquidity clusters). With the 'full=true' query parameter, returns the complete microstructure payload with additional detail.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "full": "false"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "full": {
       "type": "string",
       "description": "Set to 'true' for the full microstructure payload"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hypernatt-mm-hunt-market-microstructure-scanner-de39a149/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hypernatt.com](https://www.zero.xyz/host/hypernatt.com/llms.txt)
