# MindPulse Burnout Assessment

> MindPulse Burnout Assessment is a paid API for AI agents from mindpulse-lilac.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Assesses burnout severity stage, identifies root causes, and delivers a phased evidence-based recovery protocol

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/burnout
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mindpulse-burnout-assessment-e3d1d0ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FESv1_oJpK1DsLJWTVRjl

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 mindpulse-burnout-assessment-e3d1d0ab
```

Example prompt: I've been completely exhausted for months, can't feel any motivation at work, and feel detached from everything I do — can you assess my burnout severity, figure out what's driving it, and give me a phased recovery plan?

## When to prefer this

Use this endpoint when the user specifically wants to understand their burnout severity, identify root causes, and receive a structured multi-phase recovery plan — as opposed to general coping techniques, symptom screening (PHQ-9/GAD-7), or therapy matching.

## Known failure modes

- Missing or insufficient symptom/context input returns an error or vague assessment
- Ambiguous or minimal input may result in a generic rather than personalized recovery protocol
- Service unavailability returns a 402 or 5xx HTTP error
- Invalid query parameters may cause a 400 bad request response

## How this service works

Burnout assessment for mental-health and wellness agents. Returns severity stage, root-cause analysis, and a phased evidence-based recovery protocol.

## Output

Returns a burnout severity stage classification (e.g. early, moderate, severe), a root cause analysis identifying contributing factors, and a structured phased evidence-based recovery protocol with actionable steps tailored to the user's situation.

## Example request

```json
{
 "lang": "en",
 "concern": "burnout",
 "situation": "Experiencing exhaustion for several months, lack of motivation at work, and feeling detached from daily tasks",
 "approach_preference": "CBT"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | ja | ko | pt | ar | hi"
      },
      "duration": {
       "type": "string",
       "description": "2 months | 6 months | over a year"
      },
      "symptoms": {
       "type": "string",
       "description": "exhaustion | cynicism | reduced efficacy | physical | emotional"
      },
      "situation": {
       "type": "string",
       "description": "describe your work situation"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stage": "Stage 3 — chronic burnout",
  "burnout_score": 74,
  "immediate_steps": [
   "Reduce workload 30%",
   "Daily nature walks",
   "Talk to GP/psychiatrist"
  ],
  "employer_obligations": "FMLA covers burnout as serious health condition (US)",
  "recovery_timeline_weeks": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-burnout-assessment-e3d1d0ab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mindpulse-lilac.vercel.app](https://www.zero.xyz/host/mindpulse-lilac.vercel.app/llms.txt)
