# The Stall — Company Research Bundle

> The Stall — Company Research Bundle is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.59/call, status unknown (last checked 2026-09-14).

Aggregates stock quote, income statements, Wikipedia company profile, GitHub repo intelligence, and website intelligence into a single company research bundle for a given US-listed ticker.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/company-research-bundle
- Price: $0.59/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-company-research-bundle-819ed713
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nJEQKpAubd1n4E2R3c6gw

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 the-stall-company-research-bundle-819ed713
```

Example prompt: Pull together a full company research bundle for NVDA — grab the stock quote, last 4 quarterly income statements, their Wikipedia page as 'NVIDIA Corporation', and check the 'NVIDIA/open-gpu-kernel-modules' GitHub repo while you're at it.

## When to prefer this

Choose this endpoint when you need a single-call, multi-source company intelligence bundle for a US-listed public company and want to avoid making 3-5 separate API calls. It is ideal for due diligence workflows, investor briefs, or AI agent pipelines that need stock, financials, and background context in one shot. Prefer alternatives if you need non-US companies, private companies without tickers, or if you only need one data type (e.g. just a stock price) and want to minimize cost.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty stock/income data
- Wikipedia entity name not found if 'entity_name' is misspelled or omitted and ticker is ambiguous
- GitHub repo not found if 'github_repo' path is incorrect or private
- Website URL unreachable or unscrapable returns partial bundle without website intelligence
- Insufficient USDC balance or payment failure on Base mainnet results in 402 error and no data returned
- Rate limits or upstream data provider outages may return stale or incomplete financial data

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

A bundled JSON response containing: current stock quote data, up to 4 recent quarterly (or annual) income statements, a Wikipedia profile for the company entity, optionally GitHub repository metrics (stars, forks, language, recent activity), and optionally website intelligence derived from the company's homepage — all keyed to the provided ticker.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US stock ticker symbol (e.g. AAPL, MSFT, NVDA). Used for stock quote and income statements."
      },
      "entity_name": {
       "type": "string",
       "description": "Company or entity name for Wikipedia lookup (e.g. 'Apple Inc'). Falls back to ticker if omitted."
      },
      "github_repo": {
       "type": "string",
       "description": "GitHub repo in 'owner/repo' format (e.g. 'microsoft/vscode'). If provided, adds GitHub repo intelligence to the result."
      },
      "website_url": {
       "type": "string",
       "description": "Company website URL (e.g. 'https://stripe.com'). If provided, adds website intelligence to the result."
      },
      "income_period": {
       "enum": [
        "quarterly",
        "annual"
       ],
       "type": "string",
       "default": "quarterly",
       "description": "Period type for income statements. Default: 'quarterly' (up to 4 recent quarters)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-company-research-bundle-819ed713/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
