# MindPulse Burnout Assessment

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

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

## Facts

- Endpoint: GET https://mindpulse.theaslangroupllc.com/api/mind/burnout
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mindpulse-burnout-assessment-60976a2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SGpUU4pfMGn_KHSmORTF3

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-60976a2d
```

Example prompt: I've been feeling completely exhausted and emotionally drained for months — I can't seem to recharge even on weekends, I dread going to work, and I feel detached from everything I used to care about. Can you assess how burned out I am, figure out what's driving it, and give me a step-by-step recovery plan?

## When to prefer this

Choose this endpoint when a user needs a structured, evidence-based burnout assessment that goes beyond a simple stress check — specifically when severity staging, root-cause identification, and a phased recovery protocol are all needed in a single call. Prefer over generic wellness endpoints when the user exhibits classic burnout indicators (exhaustion, depersonalization, reduced efficacy) and needs actionable, clinically-grounded guidance.

## Known failure modes

- Insufficient symptom context provided — endpoint may return a generic or low-confidence assessment
- Payment failure — x402 payment of 0.1 USDC not processed, returns 402 Payment Required
- Ambiguous or contradictory inputs — may result in an uncertain severity stage
- Service unavailable — upstream API unreachable, returns 503
- Rate limiting — too many requests in a short window, returns 429

## 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 structured response including the user's burnout severity stage (e.g. early, moderate, severe), a root-cause analysis identifying contributing factors (e.g. workload, lack of autonomy, values mismatch), and a phased evidence-based recovery protocol with actionable steps tailored to the identified stage and causes.

## 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-60976a2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mindpulse.theaslangroupllc.com](https://www.zero.xyz/host/mindpulse.theaslangroupllc.com/llms.txt)
