# AgentStack SEC/EDGAR Announcements by Ticker

> AgentStack SEC/EDGAR Announcements by Ticker is a paid API for AI agents from agentstack-research-3bnlllaboa-ts.a.run.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns parsed, taxonomy-classified SEC/EDGAR announcements for a single US ticker symbol as structured JSON.

## Facts

- Endpoint: GET https://agentstack-research-3bnlllaboa-ts.a.run.app/v1/us/announcements/:ticker
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstack-sec-edgar-announcements-by-ticker-35af0e80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jxuXToHf2GP6yMIJi326l

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 agentstack-sec-edgar-announcements-by-ticker-35af0e80
```

Example prompt: Pull the latest SEC/EDGAR announcements for AAPL — I need them parsed and taxonomy-classified as structured JSON.

## When to prefer this

Use this endpoint when you need structured, taxonomy-classified SEC/EDGAR announcement data for a specific US-listed company by ticker, especially when you want consistent JSON schema output suitable for downstream processing or comparison across tickers. Prefer over raw EDGAR scraping when clean, parsed data is needed quickly.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Network timeout on the cloud run endpoint
- Payment failure (x402) if USDC balance is insufficient
- Malformed ticker parameter returns a 400 or validation error
- Ticker exists but has no recent EDGAR filings returns an empty list

## How this service works

Parsed, taxonomy-classified SEC/EDGAR (US) announcements for one ticker (JSON). Identical schema across all supported markets.

## Output

A JSON array of parsed, taxonomy-classified SEC/EDGAR announcements for the requested ticker, with a consistent schema across all supported markets including filing type, date, and extracted content.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "ticker": "AAPL"
  },
  "queryParams": {}
 }
}
```

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Exchange ticker symbol, e.g. AAPL (US) or BHP (AU)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentstack-sec-edgar-announcements-by-ticker-35af0e80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentstack-research-3bnlllaboa-ts.a.run.app](https://www.zero.xyz/host/agentstack-research-3bnlllaboa-ts.a.run.app/llms.txt)
