# WealthPulse Fee-Only Fiduciary Advisor Finder

> WealthPulse Fee-Only Fiduciary Advisor Finder is a paid API for AI agents from wealthpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Finds fee-only fiduciary financial advisors by matching specialty and location against NAPFA, XY Planning Network, and CFP Board directories, returning advisor types, fee structures, and vetting questions.

## Facts

- Endpoint: GET https://wealthpulse.theaslangroupllc.com/api/wealth/advisor
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wealthpulse-fee-only-fiduciary-advisor-finder-c8609986
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r2j5cq02P1R2VHQrlVO9s

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-fee-only-fiduciary-advisor-finder-c8609986
```

Example prompt: Can you find me a fee-only fiduciary financial advisor who specializes in retirement planning in Austin, Texas — including what kind of advisor to look for, how they typically charge, and what questions I should ask when interviewing them?

## When to prefer this

Use this endpoint when a user needs guidance on finding and vetting a fee-only fiduciary financial advisor, particularly when they need matched results by specialty and location with structured vetting guidance. Prefer this over generic web search when you want structured advisor-type recommendations, fee-structure breakdowns, and ready-made interview questions in one call.

## Known failure modes

- No advisors found matching the requested specialty and location combination
- Invalid or unrecognized specialty type returns empty results
- Ambiguous location input may return broader or no results
- Directory data may be outdated if underlying sources haven't refreshed
- API returns 402 if payment header is 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 the recommended advisor type to seek (e.g. CFP, NAPFA-registered), typical fee structures (hourly, flat-fee, AUM-based), relevant directory sources (NAPFA, XY Planning Network, CFP Board), and a curated list of vetting questions to ask prospective advisors.

## 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-fee-only-fiduciary-advisor-finder-c8609986/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wealthpulse.theaslangroupllc.com](https://www.zero.xyz/host/wealthpulse.theaslangroupllc.com/llms.txt)
