# MindPulse Psychiatric Medication Information

> MindPulse Psychiatric Medication Information 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-14).

Returns detailed information about a psychiatric medication including its mechanism, what to expect, comparisons to alternatives, and suggested questions for a prescriber

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/medication
- 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-psychiatric-medication-information-56031fb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SwegtGdZ5Drg_swaN19u0

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-information-56031fb7
```

Example prompt: Can you explain what sertraline does, what I should expect when starting it, how it compares to other SSRIs, and give me some good questions to ask my psychiatrist at my next appointment?

## When to prefer this

Use this endpoint when a user wants patient-friendly, evidence-informed education about a specific psychiatric medication — including what it does, what to expect, how it compares to alternatives, and how to talk to their prescriber. Prefer this over general web search when structured, clinically organized output is needed quickly.

## Known failure modes

- Unknown or misspelled medication name returns no results or an error
- Medication outside psychiatric scope may not be covered
- Payment of 0.1 USDC not processed results in 402 Payment Required error
- Overly vague input without a specific medication name may yield generic or no results

## 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 covering the medication's mechanism of action, what the patient can expect during treatment (onset, side effects, duration), how it compares to similar medications, and a list of recommended questions to discuss with a prescriber.

## 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-information-56031fb7/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)
