# DarrylBots Agent Market-Tone Challenge

> DarrylBots Agent Market-Tone Challenge 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).

Scores an agent's GREEN/RED/MIXED market-tone prediction against a live options-flow calculation, returning a pass/fail result with no random payout.

## Facts

- Endpoint: GET https://darrylbots.com/api/agent-market-tone-challenge
- 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-market-tone-challenge-b5367e44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_62vZDqtCvNlIQWbRjACgd

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-market-tone-challenge-b5367e44
```

Example prompt: Submit my GREEN prediction to the DarrylBots market-tone challenge and tell me if it matches the live options-flow signal.

## When to prefer this

Use this endpoint when you want to objectively score a market-tone prediction (GREEN/RED/MIXED) against a real-time options-flow calculation, especially in agent benchmarking, skill-testing, or automated trading-bot evaluation workflows. Prefer this over generic sentiment APIs when you need a deterministic, non-random, paid challenge format grounded in live options data.

## Known failure modes

- Missing or invalid 'prediction' query param — endpoint requires one of GREEN, RED, or MIXED
- Payment failure — x402 micropayment of $0.001 USDC must succeed before response is returned
- Live options-flow data temporarily unavailable — service may return error if underlying signal cannot be computed
- Wrong HTTP method — only GET is accepted

## 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

The agent receives a scored result indicating whether its submitted prediction (GREEN, RED, or MIXED) matched the live market-tone calculation derived from options-flow signals, with no random payout component — purely a skill-based correctness verdict.

## 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": {
      "prediction": {
       "enum": [
        "GREEN",
        "RED",
        "MIXED"
       ],
       "type": "string",
       "description": "Agent prediction to score against the live market-tone calculation."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "challenge": {
   "actual": "RED",
   "correct": false,
   "prediction": "GREEN"
  },
  "purchased": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/darrylbots-agent-market-tone-challenge-b5367e44/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)
