# GoCreative SEC Financial Data API

> GoCreative SEC Financial Data API 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-16).

Retrieves SEC financial filings and financial statement data for a given company or filing identifier using official SEC sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/sec-financials/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sec-financial-data-api-70035f36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VVJ8YwX13gDWJR2Pg9unx

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-financial-data-api-70035f36
```

Example prompt: Pull the SEC financial data for Apple — ticker AAPL — so I can see their latest income statement and balance sheet figures from official SEC filings.

## When to prefer this

Use this endpoint when you need official, authoritative financial statement data for US-listed public companies sourced directly from SEC EDGAR filings. Prefer this over scraped or aggregated financial data sources when regulatory accuracy and official sourcing matter, such as for compliance research, equity analysis, or auditing purposes.

## Known failure modes

- Invalid or unrecognized ticker/CIK returns an error or empty result
- Company not publicly listed with SEC returns no data
- Malformed input argument causes 400-level error
- SEC EDGAR source temporarily unavailable causes 500-level error
- Rate limiting or payment failure via x402 blocks the request

## 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 structured financial data sourced from SEC EDGAR for the requested company or filing, including financial statement line items such as revenue, net income, assets, liabilities, and cash flows, drawn from official 10-K or 10-Q submissions.

## 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-financial-data-api-70035f36/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)
