# MindPulse Symptom Assessment (PHQ-9/GAD-7)

> MindPulse Symptom Assessment (PHQ-9/GAD-7) 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).

Runs a structured mental health symptom assessment using PHQ-9/GAD-7 frameworks and returns severity interpretation plus recommended next steps

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/assessment
- 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-symptom-assessment-phq-9-gad-7-e3a6f637
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CNrK0CNsjhlLZkdD7EieA

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-symptom-assessment-phq-9-gad-7-e3a6f637
```

Example prompt: I've been feeling really down for the past two weeks — low energy, no motivation, trouble sleeping, and a constant sense of dread — can you run a PHQ-9 and GAD-7 symptom assessment on what I'm describing and tell me how severe it is and what I should do next?

## When to prefer this

Use this endpoint when a user needs a structured, evidence-based mental health symptom screen using the clinically validated PHQ-9 (depression) and GAD-7 (anxiety) frameworks, particularly when you need severity classification and actionable next steps rather than general wellness advice or coping techniques.

## Known failure modes

- Missing or too-vague symptom input may result in incomplete scoring
- Symptoms outside depression/anxiety scope may not map cleanly to PHQ-9/GAD-7 frameworks
- Payment failure (x402) if USDC balance insufficient
- Network or server error returning 5xx with no assessment result

## 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

Returns a structured assessment including PHQ-9 and GAD-7 framework scores, a clinical severity interpretation (e.g. mild, moderate, severe), and clear recommended next steps or referral guidance based on the symptom profile.

## Example request

```json
{
 "lang": "en",
 "concern": "anxiety and low mood",
 "situation": "work stress and difficulty concentrating",
 "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"
      },
      "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-symptom-assessment-phq-9-gad-7-e3a6f637/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)
