# GoCreative SEC Recent Filings API

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

Retrieves the most recent SEC filings for a given company or entity using official SEC EDGAR data

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/sec-recent/%7Barg%7D
- Price: $0.02/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-recent-filings-api-db68198a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FcEGHyceBUfBaJvq9OHOt

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-recent-filings-api-db68198a
```

Example prompt: Can you pull up the most recent SEC filings for Apple — I want to see what they've submitted to EDGAR lately, including any 10-K, 10-Q, or 8-K forms.

## When to prefer this

Use this endpoint when you need authoritative, official SEC filing data for a public company directly from EDGAR without needing an API key or signup. Ideal for compliance research, financial due diligence, or monitoring corporate disclosures. Prefer this over scraping SEC.gov directly or using financial data aggregators when you want raw official filing metadata at low per-call cost.

## Known failure modes

- Invalid or unrecognized company identifier returns an error or empty result
- CIK not found in EDGAR database
- Rate limiting or payment failure via x402 protocol
- Malformed query parameter returns 400 Bad Request
- Company has no recent filings on record

## 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 a list of the most recent SEC filings for the specified company or entity, including filing types (10-K, 10-Q, 8-K, etc.), filing dates, accession numbers, and other EDGAR metadata sourced directly from official SEC 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-recent-filings-api-db68198a/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)
