# ClearCheck Investment Adviser SEC Registration Lookup

> ClearCheck Investment Adviser SEC Registration Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up whether an investment adviser (firm or individual) is SEC-registered, returns their active status, and indicates whether any disclosures exist.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/adviser
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-investment-adviser-sec-registration-lookup-901bc139
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cr6eryfB7bw28mSRn9Fx4

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 clearcheck-investment-adviser-sec-registration-lookup-901bc139
```

Example prompt: Can you check if Vanguard Personal Advisor Services is SEC-registered and whether they have any disclosures on file? Search both firm and individual registers.

## When to prefer this

Use this endpoint when you need to verify the SEC registration status of an investment adviser — whether a firm or an individual — and check for any regulatory disclosures. It is ideal for due diligence workflows, compliance screening, or helping a user vet a financial professional before engaging their services. Prefer this over general web search when you need structured, authoritative data from SEC IAPD with a clear verdict and disclosure flag.

## Known failure modes

- No match found for the given name or CRD number — returns empty arrays with zero counts
- Ambiguous name returns multiple results — agent should use CRD number for precision
- SEC IAPD data unavailable or timeout — upstream dependency failure
- Invalid query parameters (missing required 'name' field) — returns validation error
- Name misspelling leads to false negatives — spelling variants may not surface the correct record

## How this service works

Is this investment adviser SEC-registered? Firm or individual, active status, and whether disclosures exist.

## Output

Returns a structured response with matched firms and/or individuals including their name, CRD number, SEC number, registration status, address, branch count, other known names, and a boolean indicating whether disclosures exist. Also includes aggregate counts (total matches, active, with disclosures), the data source, a plain-language verdict, a disclaimer, and a timestamp of when data was retrieved.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Adviser firm name, person's name, or CRD number"
      },
      "type": {
       "enum": [
        "firm",
        "individual",
        "both"
       ],
       "type": "string",
       "description": "Which register to search, default both"
      },
      "limit": {
       "type": "integer",
       "description": "Max matches per register, default 5"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "firms": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "kind": {
          "type": "string"
         },
         "name": {
          "type": "string"
         },
         "report": {
          "type": "string"
         },
         "address": {
          "type": "string"
         },
         "branches": {
          "type": "integer"
         },
         "crdNumber": {
          "type": "string"
         },
         "secNumber": {
          "type": "string"
         },
         "otherNames": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "hasDisclosures": {
          "type": "boolean"
         },
         "registrationStatus": {
          "type": "string"
         }
        }
       }
      },
      "query": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "type": {
         "type": "string"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "firms": {
         "type": "integer"
        },
        "active": {
         "type": "integer"
        },
        "individuals": {
         "type": "integer"
        },
        "withDisclosures": {
         "type": "integer"
        }
       }
      },
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-investment-adviser-sec-registration-lookup-901bc139/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
