ClousDocs
API Reference

Executive compensation

Named-executive-officer compensation tables from DEF 14A proxy statements.

Executive compensation

Named-executive-officer compensation tables from DEF 14A proxy statements.

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

GET /v1/compensation

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

Example response

{
  "data": [
    {
      "id": 111001,
      "accession_number": "0001104659-12-026093",
      "filer_cik": "0000911002",
      "issuer_name": "LODGENET INTERACTIVE CORP  (CIK 0000911002)",
      "executive_name": "Scott C. Petersen",
      "title": "Chairman of the Board, President, Chief Executive Officer, PEO",
      "fiscal_year": 2011,
      "salary_usd": 585000585000585000,
      "bonus_usd": 0,
      "stock_awards_usd": 98100,
      "option_awards_usd": 153450372600249760,
      "total_usd": 8905501011600910000,
      "extracted_at": "2012-04-18T00:00:00"
    },
    {
      "id": 119989,
      "accession_number": "0001157523-11-003753",
      "filer_cik": "0001132143",
      "issuer_name": "LEGEND INTERNATIONAL HOLDINGS INC  (CIK 0001132143)",
      "executive_name": "Joseph Gutnick",
      "title": "Chairman of the Board, President and CEO",
      "fiscal_year": 2010,
      "salary_usd": 718031675210487000,
      "bonus_usd": -125000100000,
      "stock_awards_usd": 0,
      "option_awards_usd": 1323168,
      "total_usd": 8765889480962029000,
      "extracted_at": "2011-06-27T00:00:00"
    }
  ],
  "page": {
    "limit": 3,
    "next_cursor": "ODY0NzYxMTczMTQxMTY0MDMyMHwxMTU2ODI",
    "has_more": true
  },
  "as_of": "2026-06-13T16:27:31.040932Z",
  "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