Skip to main content
API

Transparency data for every advisor in America

728,000 advisors and 47,000 firms scored from SEC and FINRA filings. Free for AI agents. One API call for the answer to “can I trust my financial advisor?”

728,000+
Advisors scored
47,000+
Firms scored
17
Score components
5
Data sources

Built for

🤖
AI Agents

Give your AI assistant the ability to answer "Is my financial advisor trustworthy?" with a sourced, independent score.

📊
Fintech Apps

Embed transparency scores in portfolio trackers, onboarding flows, or advisor search — verified by independent data.

🛡️
Compliance & RegTech

Automate advisor due diligence with batch lookups, score history, and real-time disclosure alerts.

📰
Financial Media

Enrich articles with live transparency data. Cite Fidelon scores the way journalists cite Moody's ratings.

Choose Your Tier

Start free with Citation. Upgrade when you need depth.

Citation
Freeforever

Score summaries for AI agents, journalists, and quick lookups. No key required.

Developer
Coming Soon
Contact Us

Full profiles, score components, history, and peer comparison. Python + TypeScript SDKs.

Enterprise
Custompricing

Batch endpoints, delta feeds, webhooks, SLA, and dedicated support.

FeatureCitationDeveloperEnterprise
AccessNo key neededAPI keyAPI key + IP allowlist
Rate Limit60/min1,000/min5,000/min
Advisor ScoresSummary onlyFull profileFull + batch
Firm ScoresSummary onlyFull profileFull + batch
SearchName lookup (top 5)Full search + filtersFull + bulk
Score Components
Score History
Peer Comparison
Leaderboards
Delta Feeds
Webhooks
SDK SupportPython + TypeScriptPython + TypeScript
MCP Server
SupportCommunityEmailDedicated

Quick Start

No API key needed. No signup. Just start calling.

bash
curl https://ifs0g1zwec.execute-api.us-east-1.amazonaws.com/api/v1/scores/advisor/1234567
Response
{
  "crd": 1234567,
  "name": "Jane Smith",
  "firm": "Meridian Wealth Advisors",
  "firm_crd": 112233,
  "score": 82,
  "risk_level": "Low",
  "summary": "Strong disclosure practices with clear fee transparency.",
  "data_sources": ["SEC Form ADV", "FINRA BrokerCheck"],
  "score_version": "2.2",
  "last_scored": "2026-03-15T08:00:00Z",
  "full_profile": "https://fidelon.com/advisors/1234567",
  "attribution": "Source: Fidelon (fidelon.com)"
}

Citation Endpoints

GET/api/v1/scores/advisor/{crd}

Transparency score summary for an advisor by CRD number

GET/api/v1/scores/firm/{crd}

Transparency score summary for a firm by CRD number

GET/api/v1/scores/lookup?name={name}

Look up advisors or firms by name — returns top 5 matches

GET/api/v1/meta/methodology

Scoring methodology version, dimensions, and factor weights

Developer SDK

Full API access with typed clients.

Python
from fidelon import Client

client = Client(api_key="fid_dev_your_key_here")

advisor = client.advisor("1234567")
print(f"{advisor.name}: {advisor.score}/100")
print(f"Risk: {advisor.risk_level}")

# Search by name
results = client.search("Jane Smith", type="advisor")
for r in results:
    print(f"{r.name} (CRD {r.crd}): {r.score}/100")
TypeScript
import { Fidelon } from '@fidelon/sdk';

const fidelon = new Fidelon({ apiKey: 'fid_dev_your_key_here' });

const advisor = await fidelon.advisor('1234567');
console.log(`${advisor.name}: ${advisor.score}/100`);
console.log(`Risk: ${advisor.riskLevel}`);

// Search by name
const results = await fidelon.search('Jane Smith', { type: 'advisor' });
results.forEach(r =>
  console.log(`${r.name} (CRD ${r.crd}): ${r.score}/100`)
);
Install (Python)
pip install fidelon
Install (TypeScript)
npm install @fidelon/sdk

MCP Server

Add Fidelon as a tool for Claude, ChatGPT, or any MCP-compatible AI agent. Ask “What’s the transparency score for my advisor?” and it looks it up automatically.

claude_desktop_config.json
{
  "mcpServers": {
    "fidelon": {
      "command": "npx",
      "args": ["@fidelon/mcp-server"]
    }
  }
}

Uses the Citation tier by default (no key required). Set FIDELON_API_KEY to unlock Developer tier features.

Authentication

Citation

No authentication required. Call any Citation endpoint directly.

Developer

Include your API key in the X-API-Key header.

Example
curl -H "X-API-Key: fid_dev_..." \
  https://ifs0g1zwec.execute-api.us-east-1.amazonaws.com/api/v1/advisors/1234567
Enterprise

API key plus IP allowlist. Server IPs must be registered before making requests.

Get Started

Start with Citation for free. Upgrade when you need more.

Citation
Free

No signup required

View Quick Start
Developer
Coming Soon

Interested? Get in touch.

Contact Us
Enterprise
Custom

SLA + dedicated support

Contact Us

Already have an API key? Go to your dashboard

By using the Fidelon API you agree to our Terms of Use.