# Orchard Data Dip Check

> Orchard Data Dip Check is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns RSI and price dip indicators for a given stock ticker to identify oversold/pullback conditions

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/dip-check
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-dip-check-3509f7f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WAlxCH5E_6_QkN4r6JRWV

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 orchard-data-dip-check-3509f7f1
```

Example prompt: Can you check if NVDA is currently in a dip — I want to see the RSI and how far it is from its 20-day high before I decide whether to buy.

## When to prefer this

Choose this endpoint when you need fast, per-call technical dip signals (RSI + recent return + distance from high) for individual equities without committing to a subscription. Ideal for AI agents that need to screen stocks on demand, particularly in buy-the-dip or mean-reversion strategies. Best when you need a quick categorical signal ('dip' vs not) plus raw RSI values rather than full OHLCV history or fundamental data.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Payment not included or insufficient USDC balance causes a 402 Payment Required response
- Rate limiting or worker downtime may cause timeouts
- Ticker symbols for non-US or non-supported equities may return no data
- Missing required 'symbol' query parameter causes a validation error

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

Returns a JSON object with the ticker symbol and a dip sub-object containing: last price, RSI-2, RSI-14, a categorical dip state string (e.g. 'dip'), 1-day return percentage, 5-day return percentage, and percentage distance from the 20-day high. Useful for assessing whether a stock is in a short-term pullback or oversold condition.

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker, e.g. NVDA"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dip": {
   "last": 178.2,
   "rsi2": 8.4,
   "rsi14": 41.2,
   "state": "dip",
   "ret_1d_pct": -2.3,
   "ret_5d_pct": -7.8,
   "dist_from_20d_high_pct": -6.1
  },
  "symbol": "NVDA"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-dip-check-3509f7f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
