# GoCreative SEC EDGAR Filing Monitor

> GoCreative SEC EDGAR Filing Monitor is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Polls SEC EDGAR for the latest filings by ticker or CIK and returns a change-signature for detecting new 8-K, 10-Q, and 10-K filings, enabling recurring material-event alerts.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/monitor/filings/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sec-edgar-filing-monitor-b405c829
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eVgDiIl6YhAmVVQZbjowu

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 gocreative-sec-edgar-filing-monitor-b405c829
```

Example prompt: Check SEC EDGAR right now for any new 8-K or 10-Q filings from Tesla (ticker TSLA) and let me know if there's anything filed recently that I haven't seen yet — I want to be alerted to any material events.

## When to prefer this

Choose this endpoint when an AI agent needs keyless, pay-per-call access to real-time SEC EDGAR filing detection without API key management. It is ideal for trading agents, IR monitoring bots, or research pipelines that need to poll repeatedly and cheaply ($0.05/call) for material-event filings such as 8-Ks, and require a change-signature mechanism to avoid re-processing seen filings.

## Known failure modes

- Invalid or unrecognized ticker/CIK returns empty or error response
- CIK not found on EDGAR returns 404 or null result
- EDGAR upstream outage causes delayed or failed poll
- Payment failure (insufficient USDC) returns 402 response
- Malformed query parameter causes 400 bad request

## How this service works

SEC Filing Watch — the most recent SEC filings for a company (ticker/CIK) PLUS a stable change-signature, built for monitoring agents. Poll daily and alert when the signature changes — the company filed a new 8-K, 10-Q or 10-K. Continuous financial-event monitoring for trading, research and IR agents. Keyless, real EDGAR data, $0.05/poll.

## Output

Returns the most recent SEC filing metadata for the queried ticker or CIK, including filing type (e.g. 8-K, 10-Q, 10-K), filing date, event indicators, and a change-signature hash that can be compared across polls to detect newly submitted filings.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-sec-edgar-filing-monitor-b405c829/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
