# GoCreative SEC Filings Lookup

> GoCreative SEC Filings Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-09).

Retrieves SEC filing data for a given company or filing identifier from official EDGAR sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/sec-filings/%7Barg%7D
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sec-filings-lookup-bd199e73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yqMW3EtybQnk1wJpM4ANv

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-filings-lookup-bd199e73
```

Example prompt: Pull the SEC filings for Tesla — I want to see what they've filed with the SEC, especially any recent 10-K or 8-K documents.

## When to prefer this

Use this endpoint when you need official SEC regulatory filing data for a US public company, such as annual reports (10-K), quarterly reports (10-Q), or material event disclosures (8-K). Prefer this over web scraping when you need structured, authoritative data from EDGAR at $0.03 per call with no API key required.

## Known failure modes

- Invalid or unrecognized ticker/CIK returns 404 or empty result
- Company not publicly traded or not registered with SEC returns no filings
- Malformed input argument causes 400 bad request
- Payment failure via x402 returns 402 with payment instructions
- Rate limiting or server unavailability returns 5xx error

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns SEC filing data for the specified company or filing argument, including filing types (10-K, 10-Q, 8-K, etc.), dates, and associated disclosure information sourced from official SEC EDGAR records.

## 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-filings-lookup-bd199e73/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)
