# GoCreative SEC EDGAR Filings Lookup

> GoCreative SEC EDGAR 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-14).

Fetches company profile and 20 most recent SEC filings for a given company from official EDGAR data

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/sec-filings/:var1
- Price: $0.03/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-filings-lookup-98cc7cb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LUY4-4pbxixrJ7HHozmiR

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-filings-lookup-98cc7cb7
```

Example prompt: Pull the company profile and most recent SEC filings for Apple Inc. from EDGAR — I need their form types, filing dates, and accession numbers for due diligence.

## When to prefer this

Use this endpoint when you need authoritative, official SEC-sourced company profiles and recent filing metadata for U.S. public companies. Ideal for equity research, compliance checks, and due diligence workflows where data provenance from SEC EDGAR is required. Prefer this over third-party financial data providers when regulatory accuracy and official filing URLs are essential.

## Known failure modes

- Company not found in EDGAR — returns empty or error if ticker/CIK is invalid or not registered with SEC
- Payment failure — x402 USDC payment not processed, request rejected
- Rate limiting — too many requests in a short window
- Ambiguous company identifier — multiple matches or no match for the input string
- EDGAR upstream outage — SEC EDGAR temporarily unavailable, causing timeout or 503

## How this service works

SEC EDGAR company profile (name, SIC, EIN, state, address, phone) + 20 most recent filings (form, date, accession, doc URL) for any US-listed ticker or CIK. Official source. For equity research and 10-K/8-K monitoring agents.

## Output

Returns a structured response containing: company profile (name, SIC code, EIN, state of incorporation, registered address, phone number) plus a list of up to 20 most recent SEC filings, each with form type (e.g. 10-K, 8-K), filing date, accession number, and direct URLs to the filing documents on EDGAR.

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