# mpp.hyreagent.fun Pool Recommendations

> mpp.hyreagent.fun Pool Recommendations is a paid API for AI agents from mpp.hyreagent.fun, paid per call via x402, $0.080000/call, status unknown (last checked 2026-09-15).

Returns AI-powered liquidity pool recommendations for DeFi trading on Base network

## Facts

- Endpoint: POST https://mpp.hyreagent.fun/base/lp/pools-recommend
- Price: $0.080000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mpp-hyreagent-fun-9b0e8ec5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jxRbASw461WS_T3DTsxmn

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 mpp-hyreagent-fun-9b0e8ec5 -d '<json body>'
```

Example prompt: Can you recommend the best liquidity pools on Base for me to provide liquidity right now, focusing on pools with good yield and manageable risk?

## When to prefer this

Use this endpoint when an agent needs curated, ranked pool recommendations on the Base network rather than raw pool data. Ideal for DeFi yield-farming workflows where the user wants actionable LP suggestions rather than having to manually evaluate pool metrics. Complements sibling endpoints for token analysis (whale holders, sniper detection, bonding curve) when building a full DeFi due-diligence pipeline.

## Known failure modes

- No pools found matching criteria — empty recommendations array
- Invalid chain or unsupported network — 400 error
- Payment not included or insufficient — 402 payment required
- Upstream data source unavailable — 503 or timeout
- Malformed request body — 400 validation error

## How this service works

Pool recommendations

## Output

A ranked list of recommended liquidity pools on the Base network, likely including pool addresses, token pairs, estimated yields, liquidity depth, and risk indicators to help guide LP decisions.

## Example request

```json
{
 "chain": "base",
 "limit": 10,
 "criteria": {
  "minApy": 5,
  "maxRisk": "medium",
  "tokenFilter": [
   "USDC",
   "ETH"
  ]
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "signal",
  "insight",
  "sources",
  "timestamp",
  "confidence",
  "latency_ms",
  "model_used"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "query",
    "total_matches",
    "matching_pools"
   ],
   "properties": {
    "query": {
     "type": "object",
     "required": [
      "base",
      "risk",
      "quote",
      "strategy"
     ],
     "properties": {
      "base": {
       "type": "string"
      },
      "risk": {
       "type": "string"
      },
      "quote": {
       "type": "string"
      },
      "strategy": {
       "type": "string"
      }
     }
    },
    "total_matches": {
     "type": "number"
    },
    "matching_pools": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "name",
       "address",
       "apr_pct",
       "tvl_usd",
       "bin_step",
       "fees_24h",
       "volume_24h"
      ],
      "properties": {
       "name": {
        "type": "string"
       },
       "address": {
        "type": "string"
       },
       "apr_pct": {
        "type": "number"
       },
       "tvl_usd": {
        "type": "number"
       },
       "bin_step": {
        "type": "number"
       },
       "fees_24h": {
        "type": "number"
       },
       "volume_24h": {
        "type": "number"
       }
      }
     }
    }
   }
  },
  "signal": {
   "type": "string"
  },
  "insight": {
   "type": "string"
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "timestamp": {
   "type": "string"
  },
  "confidence": {
   "type": "number"
  },
  "latency_ms": {
   "type": "number"
  },
  "model_used": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mpp-hyreagent-fun-9b0e8ec5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mpp.hyreagent.fun](https://www.zero.xyz/host/mpp.hyreagent.fun/llms.txt)
