# MindPulse Psychiatric Medication Explainer

> MindPulse Psychiatric Medication Explainer 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-13).

Returns plain-language explanations of psychiatric medications including mechanism, expected effects, comparisons to alternatives, and suggested questions for the prescriber.

## Facts

- Endpoint: GET https://mindpulse.theaslangroupllc.com/api/mind/medication
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mindpulse-psychiatric-medication-explainer-d7962b0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LeU1ZJEIE_vlKfNt7FI_N

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-psychiatric-medication-explainer-d7962b0e
```

Example prompt: I was just prescribed Wellbutrin and want to understand what it does, what side effects to watch for, how it compares to SSRIs, and what questions I should ask my prescriber at my next appointment.

## When to prefer this

Use this endpoint when a user needs plain-language education about a specific psychiatric medication — especially when they want to understand mechanism, side effects, comparisons, and what to discuss with their doctor. Prefer this over general medical databases when the focus is mental health medications and patient-friendly communication rather than clinical dosing data.

## Known failure modes

- Unrecognized or misspelled medication name returns an error or empty result
- Non-psychiatric medications may not be covered by this endpoint
- Overly generic drug class queries without a specific drug may return incomplete results
- Rate limiting or payment failure (402) if USDC balance is insufficient

## How this service works

Psychiatric medication explainer for mental-health and health agents. Returns what a medication does, what to expect, how it compares, and questions for the prescriber.

## Output

A structured response explaining what the queried psychiatric medication does, what the patient can expect (onset, common effects, side effects), how it compares to similar medications, and a list of recommended questions to bring to the prescribing clinician.

## 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": {
      "drug": {
       "type": "string",
       "description": "sertraline | escitalopram | bupropion | adderall | lithium | quetiapine"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | ja | ko | pt | ar | hi"
      },
      "condition": {
       "type": "string",
       "description": "depression | anxiety | adhd | bipolar | ocd | ptsd"
      }
     }
    }
   },
   "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": {
  "drug": "sertraline",
  "note": "Not medical advice — consult prescribing physician",
  "class": "SSRI",
  "common_uses": [
   "Major depression",
   "GAD",
   "Panic disorder",
   "OCD"
  ],
  "onset_weeks": 4,
  "common_side_effects": [
   "Nausea (first 2 weeks)",
   "Sexual dysfunction",
   "Insomnia"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-psychiatric-medication-explainer-d7962b0e/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)
