# Runbot StratForge Flash

> Runbot StratForge Flash is a paid API for AI agents from mcp.runbot.io, paid per call via x402, $2.99/call, status unknown (last checked 2026-09-16).

Builds, AI-optimizes (2-minute run), and exports a crypto trading strategy in a single paid API call

## Facts

- Endpoint: POST https://mcp.runbot.io/v1/strategy-flash
- Price: $2.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/runbot-stratforge-flash-9d69da3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1_emwkKH6rLeIsXCrAZs

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 runbot-stratforge-flash-9d69da3c -d '<json body>'
```

Example prompt: Use StratForge Flash to build and AI-optimize a trend-following strategy for BTC/USDC on a 4-hour timeframe with a 60-day backtest window — I want to maximize returns and get the exported strategy file back.

## When to prefer this

Choose StratForge Flash when you need a complete, ready-to-use crypto trading strategy quickly and cheaply — the 2-minute AI optimization window is ideal for fast iteration or when you don't need exhaustive parameter search. Prefer the Deep or Ultra tiers when you need more thorough optimization, but Flash is the best entry point for rapid prototyping or lower-budget strategy generation.

## Known failure modes

- Invalid or unsupported market symbol returns a validation error
- Unsupported market_type value causes rejection
- backtest_window_days outside allowed range returns an error
- Payment failure or insufficient USDC balance blocks the call
- Optimization timeout within the 2-minute window may return partial results
- Missing required fields (market, objective) returns a 400-level error

## How this service works

x402-monetized API to build, optimize, and export crypto trading strategies. See /llms.txt.

## Output

Returns a fully built and AI-optimized trading strategy, including strategy parameters, logic, and an exportable strategy file, along with backtest performance metrics over the specified window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "market": {
   "type": "string"
  },
  "objective": {
   "type": "string"
  },
  "timeframe": {
   "type": "string"
  },
  "description": {
   "type": "string"
  },
  "market_type": {
   "type": "string"
  },
  "backtest_window_days": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/runbot-stratforge-flash-9d69da3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.runbot.io](https://www.zero.xyz/host/mcp.runbot.io/llms.txt)
