ClousDocs
API Reference

Adviser representatives (IAPD)

Individual investment-adviser representatives from FINRA/SEC IAPD.

Adviser representatives (IAPD)

Individual investment-adviser representatives from FINRA/SEC IAPD.

  • Base URL: https://api.clous.ai
  • Auth: Authorization: Bearer clous_live_...

GET /v1/iapd-individuals

Results are returned through the standard response envelope and are cursor-paginated.

Query parameters

Prop

Type

Example request

curl -s "https://api.clous.ai/v1/iapd-individuals?limit=3" \
  -H "Authorization: Bearer clous_live_..."
import requests
resp = requests.get(
    "https://api.clous.ai/v1/iapd-individuals",
    params={"limit":"3"},
    headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()
const resp = await fetch(
  "https://api.clous.ai/v1/iapd-individuals?limit=3",
  { headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();

Example response

{
  "data": [
    {
      "id": 9204738,
      "ind_source_id": "4348767",
      "first_name": "Mary",
      "middle_name": "Z",
      "last_name": "Edwards",
      "full_name": "Mary Z Edwards",
      "ia_scope": "NotInScope",
      "bc_scope": "InActive",
      "disclosure_fl": "N",
      "has_disclosure": 0,
      "firm_count": 0,
      "cal_date_iapd": null,
      "observed_at": "2026-06-10T10:21:26"
    },
    {
      "id": 9204737,
      "ind_source_id": "6825266",
      "first_name": "Julian",
      "middle_name": "Z",
      "last_name": "Wolfson",
      "full_name": "Julian Z Wolfson",
      "ia_scope": "NotInScope",
      "bc_scope": "InActive",
      "disclosure_fl": "N",
      "has_disclosure": 0,
      "firm_count": 0,
      "cal_date_iapd": null,
      "observed_at": "2026-06-10T10:21:26"
    }
  ],
  "page": {
    "limit": 3,
    "next_cursor": "OTIwNDczNnw5MjA0NzM2",
    "has_more": true
  },
  "as_of": "2026-06-13T16:27:35.533707Z",
  "source": "iapd_individuals",
  "query_echo": {
    "limit": 3
  },
  "warnings": []
}

Status codes

StatusMeaning
200Success. An empty result still returns 200 with data: [] and a warnings entry.
401Missing or invalid API key.
402Out of credits.
404No record for the supplied path parameter.
422Validation error — a parameter was the wrong type or out of range.
429Rate limited.

All data derives from public SEC EDGAR (and, where noted, FINRA IAPD / USPTO) filings. Clous is independent of the SEC.

On this page