# StatePulse Finance Halts – Live Trading Halt Lookup

> StatePulse Finance Halts – Live Trading Halt Lookup is a paid API for AI agents from statepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns current trading halt information for a given ticker, including halt time and regulatory reason code

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/finance/halts
- 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/statepulse-finance-halts-live-trading-halt-lookup-aac99541
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LZqSXG6iKOHAbPsivt_jk

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 statepulse-finance-halts-live-trading-halt-lookup-aac99541 -d '<json body>'
```

Example prompt: Can you check if ticker XYZ is currently under a trading halt and tell me the halt time and reason code?

## When to prefer this

Use this endpoint when you need real-time trading halt status and reason codes for individual equities — particularly useful during volatile market sessions or when monitoring for regulatory halts like LUDP, T1, T2. Prefer this over general market data APIs when halt-specific regulatory codes and timing precision are required.

## Known failure modes

- Ticker not found or unsupported: supported field returns false
- Network or worker timeout causing no response
- Invalid ticker format causing a 4xx error
- No active halts found: halts array is empty
- Stale data if live feed is delayed

## How this service works

Parses the Nasdaq Trader RSS feed for active or recent stock trading halts.

## Output

A JSON object containing an array of active halt records for the queried ticker, each with ticker symbol, halt time, and regulatory reason code (e.g. LUDP), plus a 'supported' boolean and a confidence level string (e.g. 'high').

## 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": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "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": {
  "result": {
   "halts": [
    {
     "ticker": "XYZ",
     "halt_time": "10:14:02",
     "reason_code": "LUDP"
    }
   ]
  },
  "supported": true,
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statepulse-finance-halts-live-trading-halt-lookup-aac99541/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from statepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/statepulse-api.hahavoid0.workers.dev/llms.txt)
