# DarrylBots Agent Flow Radar Summary

> DarrylBots Agent Flow Radar Summary is a paid API for AI agents from darrylbots.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns a single GREEN/RED/MIXED market-tone estimate derived from live options-flow signals for a given ticker basket.

## Facts

- Endpoint: GET https://darrylbots.com/api/agent-flow-radar-summary
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/darrylbots-agent-flow-radar-summary-08b7d81f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_es3y-zS7LVJIiKAXLSM9p

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 darrylbots-agent-flow-radar-summary-08b7d81f
```

Example prompt: What's the current market tone right now — is options flow signaling GREEN, RED, or MIXED for SPY, QQQ, and AAPL?

## When to prefer this

Use this endpoint when you need a fast, single-label market-tone read (GREEN/RED/MIXED) derived from real-time options flow — ideal for agents that need a directional bias check before executing trades, rebalancing, or providing market commentary, rather than fundamental or price-based signals.

## Known failure modes

- Invalid or unsupported ticker symbols may return an error or default to broad market proxies
- Options data feed unavailable may result in a service error or stale signal
- Malformed query string for tickers may return a 400 validation error
- Network or upstream options-data provider outage may cause a 503 response

## How this service works

High-touch consulting for personal AI fleets: humanoid robots, LifeOps assistants, WealthOps bots, and secure digital-physical automation for homes and executives.

## Output

A single market-tone classification (GREEN, RED, or MIXED) derived from live options-flow signals for the requested ticker basket, indicating whether smart money flow is net bullish, bearish, or indeterminate at the time of the call.

## 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": {
      "tickers": {
       "type": "string",
       "description": "Optional comma-separated ticker basket. Defaults to broad market proxies and mega-cap leaders."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": {
   "confidence": 0.68,
   "market_tone": "GREEN",
   "normalized_score": 1.1
  },
  "purchased": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/darrylbots-agent-flow-radar-summary-08b7d81f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from darrylbots.com](https://www.zero.xyz/host/darrylbots.com/llms.txt)
