# FINRA BrokerCheck Lookup

> FINRA BrokerCheck Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-14).

Search FINRA BrokerCheck for US registered brokers and investment advisors by name, firm, or CRD number, returning registration status, disclosure flags, and employment history

## Facts

- Endpoint: GET https://2s.io/api/license/broker
- Price: $0.0012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-9ad531e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xHZn2zAOUIj4rGtH86Fz5

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 2s-io-9ad531e7
```

Example prompt: Can you pull the FINRA BrokerCheck record for John Smith at Morgan Stanley — I want to know if he has any disclosures on file and see his current registration status and employment history?

## When to prefer this

Use this endpoint when you need to verify the FINRA registration status, disclosure history, or employment background of a US broker or investment advisor. Prefer this over general web searches when you need structured, authoritative FINRA data. Use the CRD parameter for exact lookups when you have the registration number; use free-text query when searching by name and firm. Pair with SEC filings endpoint for comprehensive due diligence.

## Known failure modes

- No results found for query — returns empty results array
- Invalid CRD number format — returns 400 error
- CRD number not found — returns empty results
- Rate limiting or payment failure — returns 402 or 429 error
- Query too vague returns many loosely matched results requiring pagination

## How this service works

FINRA BrokerCheck lookup — every US registered broker / investment advisor (~620k current + former). Search by free-text query (name + firm) or by CRD number for a direct individual record. Each result includes CRD ID, name (with any 'doing business as' aliases), broker-check + IA scope (Active/Inactive), a hasDisclosures flag (yes/no for complaints, settlements, terminations on file), industry-start date, FINRA registration count, and current + previous employments (firm name, branch city/state, registration dates). Public per FINRA's investor-protection BrokerCheck program; pair with /api/finance/sec-filings for cross-reference.

## Output

Returns a list of matching broker/advisor records, each with CRD ID, full name (including DBA aliases), Active/Inactive status for broker and IA scope, a hasDisclosures boolean indicating presence of complaints/settlements/terminations, industry start date, number of FINRA registrations, and arrays of current and previous employment entries (firm name, branch city/state, registration dates).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "query": "Vanguard",
   "offset": 0
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "crd": {
       "type": "string",
       "description": "Direct CRD number (1-9 digits)."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 50,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "description": "Free-text query — name + firm."
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-9ad531e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
