# SeniorPulse International Pension Guidance

> SeniorPulse International Pension Guidance is a paid API for AI agents from seniorpulse.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Returns AI-synthesized guidance on public pension systems for UK, Canada, Australia, Germany, India, and Japan, plus cross-border totalization treaty information for seniors and their families.

## Facts

- Endpoint: GET https://seniorpulse.vercel.app/api/senior/pension-intl
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/seniorpulse-international-pension-guidance-1d27f94f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wl-B_WbQ2W9YKxWGzx-03

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 seniorpulse-international-pension-guidance-1d27f94f
```

Example prompt: I worked 15 years in Germany and then moved to Canada — can you explain how the German and Canadian public pension systems work together, including any totalization treaty that might let me combine those years toward both pensions?

## When to prefer this

Use this endpoint when a user needs guidance on non-US public pension systems (UK, Canada, Australia, Germany, India, Japan) or cross-border/totalization pension situations. Prefer this over sibling US-framework endpoints when the primary concern is international or multi-country retirement planning. This is the dedicated international pension endpoint, whereas other SeniorPulse endpoints handle Medicare, SSI, VA, and US state-specific programs.

## Known failure modes

- Unsupported country returns an error or empty guidance
- Missing payment signature (PAYMENT-SIGNATURE header) results in 402 Payment Required
- Ambiguous cross-border scenario may return general guidance rather than jurisdiction-specific advice
- Rate limiting or service unavailability returns 429 or 503
- No query parameters provided may return generic multi-country overview rather than targeted advice

## How this service works

International state pension intelligence: eligibility, amount, and claiming-timing guidance for public pension systems worldwide. Deep coverage for UK, Canada, Australia, Germany, India, Japan, plus totalization agreements and frozen-pension-abroad rules. For retirement-planning and caregiver agents.

## Output

Returns structured JSON containing AI-synthesized guidance on the requested country's public pension system(s), including eligibility criteria, contribution rules, benefit calculation methods, and cross-border totalization treaty information where applicable.

## 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": {
      "age": {
       "type": "string"
      },
      "lang": {
       "type": "string"
      },
      "topic": {
       "type": "string"
      },
      "country": {
       "type": "string"
      },
      "moved_abroad_to": {
       "type": "string"
      },
      "years_contributed": {
       "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": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seniorpulse-international-pension-guidance-1d27f94f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seniorpulse.vercel.app](https://www.zero.xyz/host/seniorpulse.vercel.app/llms.txt)
