# MindPulse Therapy Matcher

> MindPulse Therapy Matcher 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-16).

Matches a user's mental health concerns and budget to the right therapy platform, modality, and care level

## Facts

- Endpoint: GET https://mindpulse.theaslangroupllc.com/api/mind/match
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mindpulse-therapy-matcher-06895175
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jjXYoyQjZu9MFh6yvDBYN

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-therapy-matcher-06895175
```

Example prompt: I've been dealing with moderate anxiety and some mild depression, and I can afford around $100 a month — can you match me to the right therapy platform, modality like CBT or talk therapy, and care level that fits my situation?

## When to prefer this

Use this endpoint when an AI agent needs to route a user to the appropriate mental health care resource based on specific symptoms or concerns and a stated budget. Prefer this over generic search when structured matching across platform, modality, and care level is needed in a single call.

## Known failure modes

- Missing or unrecognized mental health concern returns no match or error
- Budget too low for any available platform returns empty result
- Ambiguous concern terms may result in a generic or low-confidence match
- Service unavailable returns HTTP 402 if payment fails or 500 on internal error

## How this service works

Therapy matcher for mental-health and therapy agents. Returns the right platform, modality, and care level for specific concerns and budget.

## Output

Returns a recommended therapy platform, the appropriate therapeutic modality (e.g. CBT, DBT, talk therapy), and the suggested care level (e.g. self-guided, therapist-matched, psychiatry) tailored to the user's specific concerns and budget.

## 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"
      },
      "budget": {
       "type": "string",
       "description": "0 | 50 | 100 | 200 (monthly USD)"
      },
      "concerns": {
       "type": "string",
       "description": "anxiety | depression | trauma | relationships | grief | adhd | stress"
      },
      "modality": {
       "type": "string",
       "description": "in-person | online | text | couples | group"
      }
     }
    }
   },
   "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": {
  "top_matches": [
   {
    "format": "online video/text",
    "platform": "BetterHelp",
    "cost_month": 240,
    "match_time_days": 2
   },
   {
    "format": "in-person/online",
    "best_for": "low income",
    "platform": "Open Path",
    "cost_session": 30
   }
  ],
  "insurance_tip": "Most plans cover 20-30 in-network sessions/year"
 }
}
```

## More

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