# MindPulse Postpartum & Perinatal Mental Health

> MindPulse Postpartum & Perinatal Mental Health 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-16).

Returns evidence-based clinical guidance on postpartum and perinatal mental health, including baby blues vs. PPD differentiation, postpartum psychosis warnings, and country-specific helplines.

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/postpartum
- 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-postpartum-perinatal-mental-health-629ef805
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ola98AAQaS7Rie8pHRvXj

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-postpartum-perinatal-mental-health-629ef805
```

Example prompt: I had a baby about 3 weeks ago and I'm still feeling really low, tearful, and disconnected — can you tell me if this sounds more like baby blues or postpartum depression, and find me relevant helplines in the United Kingdom?

## When to prefer this

Use this endpoint when a user is experiencing or asking about postpartum, perinatal, or new-parent mental health concerns — specifically to differentiate baby blues from PPD, screen for postpartum psychosis, or surface country-appropriate crisis helplines. Prefer over general mental health endpoints when the context is clearly maternal or perinatal.

## Known failure modes

- Unknown or unsupported country code returns empty helplines array
- Missing or malformed lang parameter defaults to English but may return incomplete localization
- Ambiguous symptom input may result in generic rather than specific guidance
- Payment failure via x402 returns 402 status and no content
- Rate limiting may return 429 if call volume exceeds plan thresholds

## How this service works

Postpartum and perinatal mental health guidance for parenting and mental-health agents. Distinguishes baby blues from postpartum depression, covers postpartum anxiety, intrusive thoughts, and paternal/partner PPD, with country-specific crisis and helpline resources.

## Output

Returns a JSON object identifying the assessed concern (e.g. baby-blues-vs-PPD), a clinical threshold explanation (symptoms beyond 2 weeks suggest PPD), a postpartum psychosis emergency note, and a list of country-specific helplines including name and contact method.

## 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": "baby-blues-vs-ppd | ppa | intrusive-thoughts | partner-support | screening"
      },
      "country": {
       "type": "string",
       "description": "US | UK | AU | CA | DE | any ISO country name — never assume US"
      },
      "weeks-postpartum": {
       "type": "string"
      }
     }
    }
   },
   "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": {
  "concern_assessed": "baby-blues-vs-ppd",
  "baby_blues_vs_ppd": {
   "ppd_threshold": "Symptoms persisting beyond 2 weeks suggest PPD, not baby blues."
  },
  "country_helplines": {
   "country": "United Kingdom",
   "helplines": [
    {
     "name": "PANDAS Foundation Helpline",
     "how_to_reach": "Call 0808 1961 776"
    }
   ]
  },
  "postpartum_psychosis_note": "Hallucinations or severe confusion postpartum are a medical emergency."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-postpartum-perinatal-mental-health-629ef805/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)
