# HYPERNATT MM Trap State

> HYPERNATT MM Trap State 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 the current market-maker trap state for BTC, including sweep zone boundaries, cluster price, chart verdicts, and trap direction

## Facts

- Endpoint: GET https://hypernatt.com/api/m2m/mm-trap-state
- 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-trap-state-7eb0e895
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WJEIz4VuBQzYXMRsKpot2

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-trap-state-7eb0e895
```

Example prompt: Check HYPERNATT right now and tell me whether there's an active MM trap on BTC — is it hunting longs or shorts, what are the sweep zone boundaries, and what do the hunt and reclaim chart verdicts say?

## When to prefer this

Use this endpoint when you need a real-time, pre-computed market-maker trap signal for BTC including sweep zone math and directional bias, rather than calculating it yourself from raw order book or price data. Ideal for agents that need a quick structured signal to inform a trading decision or alert without performing their own technical analysis.

## Known failure modes

- Invalid or missing properties parameter returns malformed request error
- Service unavailable if HYPERNATT backend is offline
- No active trap state may return a different state string indicating inactivity
- Rate limiting or payment failure returns 402 if x402 payment is not processed

## How this service works

Pay $0.001 USDC to access: BTC trading signal — live market-maker trap/sweep/reclaim detection: trap direction, sweep zones, reclaim verdicts. Read-only, not trade advice.

## Output

Returns a JSON object with: ok status, trap state string (e.g. MM_TRAP_ACTIVE), symbol, product identifier, sweep zone low and high prices, cluster price, chart verdicts for both hunt and reclaim math outcomes, and trap direction indicating whether the market is hunting longs or shorts (e.g. DOWN_HUNT_LONGS).

## Example request

```json
{
 "properties": "btc"
}
```

## 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": {}
    }
   },
   "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-trap-state-7eb0e895/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)
