# MindPulse Therapy Matcher

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

Matches users to the right therapy platform, modality, and care level based on their specific mental health concerns and budget

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/match
- 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-therapy-matcher-11794b9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7jTyiIPOK3vRfRO5U-uCe

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-11794b9f
```

Example prompt: I'm dealing with chronic anxiety and occasional panic attacks, my budget is around $80 per month, and I'd prefer text or video therapy rather than in-person — can you match me to the right therapy platform and care level for that?

## When to prefer this

Use this endpoint when a user needs personalized guidance on which therapy platform or service best fits their specific mental health concerns, preferred modality, and budget — rather than generic therapy information or crisis support. Ideal for users comparing telehealth services or unsure where to start.

## Known failure modes

- Vague or missing concern input may return overly generic recommendations
- Budget out of supported range may produce no matches or fallback results
- Unsupported or rare conditions may not map to any listed platforms
- Missing budget parameter may prevent accurate filtering by affordability

## 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 matched therapy platform recommendation along with the appropriate therapy modality (e.g. text, video, in-person) and care level (e.g. self-guided, therapist-led, psychiatric) suited to the user's specific mental health 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-11794b9f/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)
