# ForeverBetter Action Plan Generator

> ForeverBetter Action Plan Generator is a paid API for AI agents from api.foreverbetter.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Builds a prioritized action plan from a health analysis owned by the paying wallet

## Facts

- Endpoint: GET https://api.foreverbetter.xyz/analyses/:id/action-plan
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foreverbetter-action-plan-generator-78fe2f7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uZcJe6uu10SNR9ONDnSLG

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-action-plan-generator-78fe2f7d
```

Example prompt: Can you build a prioritized action plan from my ForeverBetter health analysis with ID ana_7f3k92?

## When to prefer this

Use this endpoint when you need a prioritized, actionable plan derived from an existing ForeverBetter health analysis. Prefer this over the recommendations endpoint when you need steps ordered by priority with a plan structure, rather than a raw list of recommendations. Requires a completed analysis ID owned by the calling wallet.

## Known failure modes

- Analysis ID not found or does not belong to the paying wallet — returns 404 or 403
- Invalid or missing analysis ID path parameter — returns 400
- Payment not provided or insufficient — returns 402
- Analysis not yet complete or in error state — returns 422 or 500
- Network timeout for large or complex analyses — returns 504

## How this service works

Build a prioritized action plan from an analysis owned by the paying wallet.

## Output

A structured, prioritized action plan derived from the specified health analysis, listing concrete steps the user should take, ordered by priority, based on the analysis findings owned by the paying wallet.

## 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-action-plan-generator-78fe2f7d/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)
