# MindPulse Grief Support

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

Provides guidance on normal vs. complicated grief, coping strategies, and resources for people experiencing loss

## Facts

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

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-grief-support-59469639
```

Example prompt: I lost my spouse six months ago and I'm still struggling to function day-to-day — can you tell me whether this sounds like normal grief or something more complicated, and what I should do next?

## When to prefer this

Use this endpoint when a user is experiencing grief or loss and needs to understand whether their experience is within normal bounds or indicates complicated grief, and wants coping strategies or resource referrals. Prefer this over generic mental health endpoints when the concern is specifically bereavement or loss-related.

## Known failure modes

- Missing or vague input may result in generic guidance rather than personalized recommendations
- Service may be unavailable if the Vercel deployment is down or payment fails
- Payment of $0.08 USDC via x402 required; missing payment results in 402 error
- Edge cases involving acute crisis may not be handled appropriately — endpoint is not a substitute for emergency services

## How this service works

Grief support for mental-health and wellness agents. Distinguishes normal vs complicated grief with coping guidance and resources for loss.

## Output

Returns an assessment distinguishing normal from complicated grief, evidence-based coping guidance tailored to the situation, and recommended resources or next steps including when to seek professional help.

## Example request

```json
{
 "query": "I lost my spouse six months ago and I'm still struggling to function day-to-day — can you tell me whether this sounds like normal grief or something more complicated, and what I should do next?"
}
```

## 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"
      },
      "type": {
       "type": "string"
      },
      "duration": {
       "type": "string",
       "description": "2 weeks | 3 months | 1 year"
      },
      "situation": {
       "type": "string",
       "description": "describe your 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": {
  "note": "Grief has no timeline. 1 year for major loss is still acute.",
  "red_flags": [
   "Prolonged inability to function",
   "Substance use",
   "Suicidal thoughts — call 988"
  ],
  "grief_model": "non-linear — not a fixed 5 stages",
  "evidence_based_support": [
   "Grief support group (free via hospices)",
   "Grief counsellor (EMDR for traumatic loss)"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-grief-support-59469639/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)
