# MindPulse Mental Health Assessment API

> MindPulse Mental Health Assessment API 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).

Returns an evidence-based mental health assessment with estimated PHQ-9/GAD-7 scores, likely condition, severity level, self-help resources, and next-step guidance

## Facts

- Endpoint: GET https://mindpulse.theaslangroupllc.com/api/mind/assessment
- 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-mental-health-assessment-api-6481d04e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IPEMTb5nu2v8SfcF9SlEZ

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-mental-health-assessment-api-6481d04e
```

Example prompt: I've been feeling constantly worried, can't sleep, and have had low energy and hopelessness for about two weeks — can you run a MindPulse mental health assessment and tell me what condition this might be, how severe it is, and what I should do next?

## When to prefer this

Use this endpoint when you need a rapid, evidence-based mental health triage that returns structured clinical estimates (PHQ-9, GAD-7) alongside actionable next steps and self-help resources — particularly when building mental health agents, wellness apps, or HR tools that need a lightweight screening layer before routing users to professional care. Prefer this over generic LLM mental health responses when you need standardised severity scoring and crisis line integration in a single structured call.

## Known failure modes

- Missing or ambiguous symptom input may produce low-confidence estimates
- Endpoint may return generic guidance if symptoms don't map clearly to a condition
- Payment failure (402) if USDC balance insufficient for the $0.10 per-call fee
- Rate limiting or timeout if the service is under high load
- Scores are estimates only — not a formal clinical diagnosis and should not replace professional evaluation

## How this service works

Mental health symptom assessment for mental-health and wellness agents. Uses the PHQ-9/GAD-7 framework with severity interpretation and clear next steps.

## Output

A JSON object containing: severity level (e.g. 'moderate'), a recommended next step (e.g. 'consult a licensed therapist'), an array of self-help suggestions (e.g. CBT workbook, MBSR), a crisis line number (988), an estimated GAD-7 score, an estimated PHQ-9 score, and a likely condition label (e.g. 'generalised anxiety disorder')

## 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"
      },
      "concern": {
       "type": "string",
       "description": "anxiety | depression | adhd | ocd | ptsd | bipolar | eating-disorder | social-anxiety"
      },
      "duration": {
       "type": "string",
       "description": "3 weeks | 6 months | ongoing"
      },
      "symptoms": {
       "type": "string",
       "description": "describe your symptoms"
      }
     }
    }
   },
   "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": {
  "severity": "moderate",
  "next_step": "Consult a licensed therapist or psychiatrist for formal diagnosis",
  "self_help": [
   "CBT workbook",
   "Mindfulness-Based Stress Reduction"
  ],
  "crisis_line": "988",
  "gad7_estimated": 13,
  "phq9_estimated": 11,
  "likely_condition": "generalised anxiety disorder"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-mental-health-assessment-api-6481d04e/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)
