# AgentStack SEC/EDGAR US Research Bundle

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

Returns a compound SEC/EDGAR research bundle for a US-listed ticker, including announcements, extracted financial figures, and a summary.

## Facts

- Endpoint: GET https://agentstack-research-3bnlllaboa-ts.a.run.app/v1/us/research/:ticker
- Price: $0.05/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-us-research-bundle-3bdda940
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AWhZkgcxYsIUPAmtGvyig

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-us-research-bundle-3bdda940
```

Example prompt: Pull the full SEC/EDGAR research bundle for Tesla (TSLA) — I want the latest announcements, extracted financial figures, and a summary from their filings.

## When to prefer this

Use this endpoint when you need a comprehensive, pre-bundled view of a US-listed company's SEC/EDGAR disclosures including structured announcements, extracted figures, and a narrative summary in a single call — rather than querying raw EDGAR directly or fetching announcements and financials separately.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker exists but has no recent SEC filings returns minimal data
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Network timeout from upstream EDGAR data source
- Ticker formatted incorrectly (e.g. lowercase or with exchange prefix) may not resolve

## How this service works

Compound SEC/EDGAR (US) research bundle: announcements, extracted figures, summary. Identical schema across all supported markets.

## Output

A compound JSON object containing taxonomy-classified SEC/EDGAR announcements, extracted financial figures from filings, and a research summary for the requested US ticker, using a consistent schema across all supported markets.

## 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-us-research-bundle-3bdda940/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)
