# ForeverBetter Analysis Recommendations

> ForeverBetter Analysis Recommendations is a paid API for AI agents from api.foreverbetter.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generate personalized health recommendations derived from a specific analysis owned by the paying wallet.

## Facts

- Endpoint: GET https://api.foreverbetter.xyz/analyses/:id/recommendations
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foreverbetter-analysis-recommendations-662a5aeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__k1O7aQ7UvzZTCibMqut6

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 foreverbetter-analysis-recommendations-662a5aeb
```

Example prompt: Can you generate the health recommendations from my ForeverBetter analysis with ID analysis_7f3a9c2b? I want to see what's suggested based on my results.

## When to prefer this

Use this endpoint when an agent needs to surface actionable health recommendations for a user who has already completed an analysis on the ForeverBetter platform and owns that analysis with their wallet. Prefer this over the action plan endpoint when the goal is open-ended recommendations rather than a structured prioritized plan.

## Known failure modes

- Analysis ID not found or does not belong to the paying wallet — 404 or 403 response
- Wallet has not paid or payment verification fails — 402 Payment Required
- Analysis exists but has no recommendations generated yet — empty or error response
- Invalid analysis ID format — 400 Bad Request
- Network or service unavailability — 5xx response

## How this service works

Generate recommendations from an analysis owned by the paying wallet.

## Output

A set of personalized health recommendations derived from the specified analysis, tailored to the wallet owner's data. Likely includes prioritized suggestions across relevant health domains based on the underlying analysis content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Analysis ID."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/foreverbetter-analysis-recommendations-662a5aeb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.foreverbetter.xyz](https://www.zero.xyz/host/api.foreverbetter.xyz/llms.txt)
