# ClearCheck SEC EDGAR Filing Profile

> ClearCheck SEC EDGAR Filing Profile is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a public company's SEC filing identity, recent filings list, and a verdict on whether it is current with its reporting obligations.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/edgar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-sec-edgar-filing-profile-299d7bb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cOUKME2DRHzhk0EMb_EoZ

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-sec-edgar-filing-profile-299d7bb0
```

Example prompt: Pull the SEC EDGAR filing profile for Apple — ticker AAPL — and tell me whether they're current with their reporting obligations and what their last 5 filings were.

## When to prefer this

Use this endpoint when you need authoritative SEC regulatory filing data for a US public company, including compliance status verification, recent filing history, and company identity details sourced directly from EDGAR. Prefer this over general financial data APIs when the primary question is about regulatory reporting status (current vs. delinquent), form types filed, or official SEC entity metadata. Especially useful for due diligence, compliance screening, or investor research workflows where SEC-sourced truth is required.

## Known failure modes

- Company not found by ticker, CIK, or name — returns no match or ambiguous results
- Ambiguous company name matches multiple entities — returns otherMatches array for disambiguation
- CIK provided does not correspond to a registered SEC filer — empty or error response
- EDGAR upstream API unavailable — service may return a timeout or upstream error
- Ticker is valid but company has been delisted and data may be stale or incomplete

## How this service works

SEC filing profile for a public company: identity, recent filings, and whether it is current with its reporting.

## Output

Returns a structured profile including the matched company's name, CIK, SIC code, tickers, exchanges, entity type, state of incorporation, fiscal year end, and former names. Also includes a list of recent SEC filings (form type, filing date, period, accession number, and URL), a filing activity summary (days since last filing, last annual and quarterly report dates), a plain-language verdict on whether the company is current with its reporting, and supporting reasons plus a disclaimer.

## 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": [],
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC Central Index Key"
      },
      "limit": {
       "type": "integer",
       "description": "Recent filings to return, default 10"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker, e.g. AAPL"
      },
      "company": {
       "type": "string",
       "description": "Company name or part of it"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "cik": {
         "type": "string"
        },
        "ticker": {
         "type": "string"
        },
        "company": {
         "type": "null"
        },
        "matchedBy": {
         "type": "string"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "company": {
       "type": "object",
       "properties": {
        "cik": {
         "type": "string"
        },
        "sic": {
         "type": "string"
        },
        "name": {
         "type": "string"
        },
        "tickers": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "website": {
         "type": "null"
        },
        "industry": {
         "type": "string"
        },
        "exchanges": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "entityType": {
         "type": "string"
        },
        "formerNames": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "fiscalYearEnd": {
         "type": "string"
        },
        "stateOfIncorporation": {
         "type": "string"
        }
       }
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
     
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-sec-edgar-filing-profile-299d7bb0/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)
