# WealthPulse Financial Advisor Intelligence Endpoint

> WealthPulse Financial Advisor Intelligence Endpoint is a paid API for AI agents from wealthpulse-phi.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns structured intelligence on a financial advisor including fiduciary status, credentials, fee structure, specialties, AUM, and SEC registration details

## Facts

- Endpoint: GET https://wealthpulse-phi.vercel.app/api/wealth/advisor
- 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/wealthpulse-financial-advisor-intelligence-endpoint-f08d0485
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qoTwoSldgjzq6a1Bik8UD

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 wealthpulse-financial-advisor-intelligence-endpoint-f08d0485
```

Example prompt: Can you look up the advisor details for Jane Doe at Vanguard Personal Advisor — I want to know if she's a fiduciary CFP, what her fee structure is, whether she's SEC registered, and if there's any disciplinary history I should know about?

## When to prefer this

Use this endpoint when you need to verify, vet, or retrieve structured intelligence about a specific financial advisor — especially fiduciary status, regulatory standing, credentials, and fee transparency. Prefer this over generic web searches when you need structured, machine-readable advisor data grounded in live rate context for downstream financial planning decisions.

## Known failure modes

- Advisor or firm not found — returns empty or null result
- Rate limiting if called excessively without valid x402 USDC payment on Base mainnet
- Payment failure if wallet lacks sufficient USDC balance
- Stale data if FRED rate feed is temporarily unavailable
- Generic 400/422 if required query parameters are missing or malformed

## How this service works

Where do I find a fee-only fiduciary financial advisor? Advisor finder via NAPFA, XY Planning Network, and CFP Board directories, matched by specialty and location — returns the advisor type to seek, typical fee structures, and vetting questions to ask. For wealth and personal-finance agents.

## Output

Returns a JSON object containing the advisor's name, firm, AUM under management, fiduciary status (boolean), credential list (e.g. CFP, CFA), areas of specialty, fee structure description, SEC registration status, and any disciplinary history summary

## 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": {
      "firm": {
       "type": "string",
       "description": "optional; required alongside name for action=vet"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | hi | ar"
      },
      "name": {
       "type": "string",
       "description": "John Smith (advisor name; required for action=vet)"
      },
      "action": {
       "type": "string",
       "description": "required; valid: find | compare | vet"
      },
      "advisors": {
       "type": "string",
       "description": "required for action=compare"
      },
      "location": {
       "type": "string",
       "description": "optional; sharpens action=find directory results"
      },
      "situation": {
       "type": "string",
       "description": "recently widowed, consolidating retirement accounts (optional context)"
      },
      "specialty": {
       "type": "string",
       "description": "required for action=find; free text, e.g. tax, estate, investment"
      }
     }
    }
   },
   "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": {
  "red_flags": [
   "Reluctance to disclose all compensation",
   "Pushes proprietary or annuity products"
  ],
  "disclaimer": "For informational purposes only. Not financial advice. Always verify advisor credentials and disciplinary history through SEC IAPD and FINRA BrokerCheck before engaging.",
  "amazon_link": "https://www.amazon.com/s?k=choosing+a+financial+advisor&tag=pulsenetwork7-20",
  "directories": [
   {
    "url": "https://www.napfa.org/find-an-advisor",
    "name": "NAPFA",
    "best_for": "fee-only fiduciary search by specialty",
    "search_tip": "Filter by \"Retirement Income Planning\""
   }
  ],
  "why_fee_only": "Fee-only advisors do not earn commissions on products, removing the incentive to sell you something",
  "amazon_search": "choosing a financial advisor",
  "fee_expectations": {
   "aum": "0.25%-1.00% annually, usually only worth it above $250K",
   "hourly": "$150-$400/hr",
   "flat_fee": "$2,000-$5,000 for a comprehensive plan"
  },
  "questions_to_ask": [
   "Are you a fiduciary at all times, or only sometimes?",
   "How exactly are you compensated?"
  ],
  "regulatory_check": {
   "note": "Search by firm and individual name for disciplinary history",
   "sec_iapd": "https://adviserinfo.sec.gov",
   "finra_brokercheck": "https://brokercheck.finra.org"
  },
  "what_to_look_for": [
   "CFP or CFA credential",
   "Fee-only (not fee-based)",
   "Fiduciary at all times"
  ],
  "advisor_type_recommendation": "Fee-only, fiduciary CFP with a retirement-income specialty"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wealthpulse-financial-advisor-intelligence-endpoint-f08d0485/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wealthpulse-phi.vercel.app](https://www.zero.xyz/host/wealthpulse-phi.vercel.app/llms.txt)
