# BotCurve Execution Pack API

> BotCurve Execution Pack API is a paid API for AI agents from botcurve-mcp.shhrcgcs.workers.dev, paid per call via x402, $9.9/call, status unknown (last checked 2026-09-13).

Returns live BotCurve market intelligence, allocation analysis, and unsigned execution packets for on-chain trading on Base-USDC via x402 micropayment.

## Facts

- Endpoint: GET https://botcurve-mcp.shhrcgcs.workers.dev/x402/execution-pack
- Price: $9.9/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/botcurve-execution-pack-api-87d718a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nDdbnKSmKQ_EJb_U5N24t

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 botcurve-execution-pack-api-87d718a0
```

Example prompt: Pull the latest BotCurve execution pack with a slippage tolerance of 50 basis points and a 120-second deadline so I can review the buy ladder and market intelligence before executing.

## When to prefer this

Choose this endpoint when you need a combined bundle of live BotCurve market intelligence, allocation analysis, and an unsigned execution packet in a single paid call on the Base-USDC chain. It is purpose-built for AI agent trading workflows that require ready-to-sign transaction data with configurable slippage and deadline parameters, rather than raw market data or a pre-signed transaction from another provider.

## Known failure modes

- Payment not completed — 402 response if USDC payment via x402 is not settled
- Invalid slippageBps format — must be 1-3 digit numeric string
- Invalid deadlineSeconds format — must be 2-4 digit numeric string
- Stale or unavailable market data — service may return empty market/founding objects
- Workers endpoint downtime — connection timeout or 5xx from Cloudflare Workers host

## How this service works

Base-USDC x402 resources for live BotCurve market intelligence, allocation analysis, and unsigned execution packets.

## Output

A JSON object with kind 'botcurve-execution-pack', a paid flag, the payer address, a market intelligence object, a founding object, and a buyLadder array representing the recommended allocation steps for unsigned on-chain execution on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "slippageBps": {
       "type": "string",
       "pattern": "^[0-9]{1,3}$"
      },
      "deadlineSeconds": {
       "type": "string",
       "pattern": "^[0-9]{2,4}$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "botcurve-execution-pack",
  "paid": true,
  "payer": "0x...",
  "market": {},
  "founding": {},
  "buyLadder": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/botcurve-execution-pack-api-87d718a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from botcurve-mcp.shhrcgcs.workers.dev](https://www.zero.xyz/host/botcurve-mcp.shhrcgcs.workers.dev/llms.txt)
