# MindPulse Relationship Guidance

> MindPulse Relationship Guidance 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).

Provides evidence-based relationship guidance covering attachment patterns, Gottman Four Horsemen communication pitfalls, communication reframing, and couples vs. individual therapy recommendations.

## Facts

- Endpoint: GET https://mindpulse-lilac.vercel.app/api/mind/relationship
- 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-relationship-guidance-1f1448c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wpSm5DS4yiyLNcg1SboiQ

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-relationship-guidance-1f1448c7
```

Example prompt: Can you analyze my relationship communication patterns — my partner and I keep falling into criticism and defensiveness, and I want to know if this matches the Gottman Four Horsemen, how to reframe it, and whether couples or individual therapy would help more?

## When to prefer this

Choose this endpoint when a user needs evidence-based relationship guidance grounded in attachment theory and Gottman research, particularly when they want help understanding communication patterns, identifying destructive behaviors like the Four Horsemen, or deciding between couples and individual therapy. Prefer this over generic mental health endpoints when the concern is specifically relational or interpersonal.

## Known failure modes

- Missing or vague relationship concern input may result in generic guidance lacking specificity
- Crisis or safety situations (e.g., domestic abuse) may not be handled appropriately by this informational endpoint
- Highly clinical diagnoses are outside scope; endpoint provides guidance, not therapy
- Rate limiting or payment failure via x402 protocol may result in 402 response with no content

## How this service works

Relationship guidance for mental-health and wellness agents. Returns attachment patterns, Gottman Four Horsemen analysis, communication reframes, and couples-vs-individual therapy guidance.

## Output

Returns structured relationship guidance including identification of relevant attachment patterns, analysis of Gottman Four Horsemen communication pitfalls present in the described situation, concrete communication reframe suggestions, and a recommendation on whether couples therapy or individual therapy is more appropriate.

## 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"
      },
      "situation": {
       "type": "string",
       "description": "describe your relationship situation or concern"
      }
     }
    }
   },
   "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": {
  "therapy": "Couples counselling — Gottman or EFT trained",
  "red_flags": [
   "Contempt",
   "Stonewalling",
   "Gaslighting",
   "Financial control"
  ],
  "situation_type": "communication breakdown",
  "evidence_based_approaches": [
   "Gottman Method — repair attempts",
   "Active listening exercises",
   "Weekly check-in ritual"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mindpulse-relationship-guidance-1f1448c7/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)
