# crypto.investment-plays

> crypto.investment-plays is a paid API for AI agents from api.craigmbrown.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates risk-scored cryptocurrency investment plays with concrete entry/exit strategies spanning DeFi yield positions and spot buys, each tagged with a numeric risk score.

## Facts

- Endpoint: POST https://api.craigmbrown.com/v1/services/crypto.investment-plays
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-investment-plays-4912a8fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lCiaS2oaMcYpno1MKcgRv

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 crypto-investment-plays-4912a8fd -d '<json body>'
```

Example prompt: Give me today's best crypto investment plays — I want specific entry and exit price targets for both DeFi yield positions and spot buys, each with a numeric risk score so I can decide what fits my risk tolerance.

## When to prefer this

Choose this endpoint when you need actionable, execution-ready crypto investment plays with quantified numeric risk scores rather than qualitative labels — especially when combining DeFi yield and spot buy strategies in a single output. Prefer this over raw market data endpoints (like crypto.market-analyzer alone) when you want the full execution-plan layer with entry/exit strategies already synthesized. Best for agents that need to present investment decisions to users without doing their own strategy generation.

## Known failure modes

- Vague or empty prompt may return generic recommendations lacking specific entry/exit levels
- Market data unavailability from upstream crypto.market-analyzer may degrade play quality
- Highly volatile market conditions may cause risk scores to be stale by execution time
- Prompt referencing obscure tokens with no oracle data may yield incomplete plays
- Upstream oracle.historical-analysis timeout may delay or fail the response

## How this service works

Risk-scored investment plays with concrete entry/exit strategies, spanning DeFi yield positions to spot buys — each play carries a numeric risk score, not a qualitative label. Settlement proof: ProofOfSettledOutcome (kind 30120, data/proof_settled_outcomes.jsonl). Consumes crypto.market-analyzer + oracle.historical-analysis; the execution-plan layer above the data layer.

## Output

Returns a JSON object with a summary string, an array of findings (individual investment plays with DeFi yield positions or spot buy details, numeric risk scores, entry prices, and exit strategies), and an array of recommendations prioritizing the most actionable opportunities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "summary": {
    "type": "string"
   },
   "findings": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "recommendations": {
    "type": "array",
    "items": {
     "type": "string"
    }
   }
  }
 },
 "example": {
  "summary": "..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-investment-plays-4912a8fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.craigmbrown.com](https://www.zero.xyz/host/api.craigmbrown.com/llms.txt)
