# x402 Data Hub - Yield Strategy Recommender

> x402 Data Hub - Yield Strategy Recommender is a paid API for AI agents from x402-data-hub-v2.vercel.app, paid per call via x402, $0.18/call, status unknown (last checked 2026-09-15).

Returns DeFi yield strategy recommendations based on a user's risk tolerance and investment amount

## Facts

- Endpoint: POST https://x402-data-hub-v2.vercel.app/api/yield/strategy
- Price: $0.18/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-data-hub-yield-strategy-recommender-784b51ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hUSjYOsLlVsHWOWYn36Iv

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 x402-data-hub-yield-strategy-recommender-784b51ed -d '<json body>'
```

Example prompt: I have $5,000 I want to put into a DeFi yield strategy — I'd describe my risk tolerance as moderate. What strategies would you recommend to maximize returns without too much exposure?

## When to prefer this

Use this endpoint when an agent needs to recommend or evaluate DeFi yield strategies personalized to a user's risk appetite and investment size. Prefer over generic crypto price endpoints when the goal is capital allocation and yield optimization advice rather than market data.

## Known failure modes

- Invalid risk value returns validation error
- Missing required fields (risk or amount) returns 400
- Amount below minimum threshold may be rejected
- Payment not received (x402 payment required) returns 402
- Downstream data unavailability causes 503 or empty result set

## How this service works

16 paid endpoints - Crypto, Exchange, Yield, Governance, Sentiment

## Output

A list or ranked set of DeFi yield strategies tailored to the specified risk profile and capital amount, likely including protocol names, estimated APYs, and risk assessments.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "risk": {
   "enum": [
    "low",
    "medium",
    "high"
   ],
   "type": "string"
  },
  "amount": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-data-hub-yield-strategy-recommender-784b51ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-data-hub-v2.vercel.app](https://www.zero.xyz/host/x402-data-hub-v2.vercel.app/llms.txt)
