ClousDocs
API Reference

Directors & board members

Board members and directors extracted from DEF 14A proxy statements.

Directors & board members

Board members and directors extracted from DEF 14A proxy statements.

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

GET /v1/board

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/board?limit=3" \
  -H "Authorization: Bearer clous_live_..."
import requests
resp = requests.get(
    "https://api.clous.ai/v1/board",
    params={"limit":"3"},
    headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()
const resp = await fetch(
  "https://api.clous.ai/v1/board?limit=3",
  { headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();

Example response

{
  "data": [
    {
      "id": 1510621,
      "source_type": "sec_form_d",
      "source_record_id": "437100",
      "ein": null,
      "sec_crd": null,
      "sec_cik": "2109188",
      "organization_name": "021T Capital Fund I, L.P.",
      "person_name": "DEVON TRIPLETT",
      "role": "MANAGING DIRECTOR OF THE GENERAL PARTNER",
      "extraction_method": "structured",
      "confidence": 0.8,
      "created_at": "2026-06-07T00:41:19"
    },
    {
      "id": 1510620,
      "source_type": "sec_form_d",
      "source_record_id": "437099",
      "ein": null,
      "sec_crd": null,
      "sec_cik": "2137442",
      "organization_name": "Paragon Park Apartments LLC",
      "person_name": "Joseph E. Huber",
      "role": "President",
      "extraction_method": "structured",
      "confidence": 0.8,
      "created_at": "2026-06-07T00:41:19"
    }
  ],
  "page": {
    "limit": 3,
    "next_cursor": "MTUxMDYxOXwxNTEwNjE5",
    "has_more": true
  },
  "as_of": "2026-06-13T16:27:31.013116Z",
  "source": "def14a",
  "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