# Kronos Trade Preflight Check

> Kronos Trade Preflight Check is a paid API for AI agents from x402.coinopai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Checks whether trading conditions allow a new trade for a crypto symbol, returning allowed status, market state, cooldown info, and signal strength warnings.

## Facts

- Endpoint: GET https://x402.coinopai.com/api/kronos/preflight
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinopai-com-7bf7e281
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OX4U5aNgHh7wGLvRVoQlJ

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 x402-coinopai-com-7bf7e281
```

Example prompt: Before making a trade decision, run a Kronos preflight check on BTC to see if conditions are currently allowed — check the market state, cooldown status, and any signal strength warnings.

## When to prefer this

Use this endpoint as the mandatory first step before calling /kronos/decision. It gates the trade loop by checking real-time market state, cooldowns, and signal conditions so that downstream decision calls are only made when conditions are valid. Prefer this over jumping straight to a decision endpoint when you want to avoid wasted spend on blocked trades.

## Known failure modes

- Missing or invalid symbol parameter returns an error
- Market data unavailable may return allowed:false with a warning
- Payment failure (x402) if USDC not provided
- Rate limiting if called too frequently without cooldown respect
- Symbol not supported returns an error or empty result

## How this service works

Kronos by ForgeMesh crypto market preflight for one symbol. Returns an allowed flag, market and risk state, cooldown status, directional bias, and warnings before a costlier decision call.

## Output

Returns a JSON object with allowed (true/false), market_state (e.g. NORMAL/HALTED/COOLDOWN), cooldown information, signal strength score, and any warnings that would block or caution against trading the requested symbol.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      },
      "allowed": {
       "type": "boolean"
      },
      "market_state": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC/USD",
  "allowed": true,
  "warnings": [],
  "in_cooldown": false,
  "market_state": "NORMAL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinopai-com-7bf7e281/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinopai.com](https://www.zero.xyz/host/x402.coinopai.com/llms.txt)
